Skip to content

Notes

24 endpoints. Every path below is served by gateway-native behind the gateway at https://api.trilocore.ai.

GET /api/v1/notes

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X GET https://api.trilocore.ai/api/v1/notes \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

POST /api/v1/notes

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/notes \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

POST /api/v1/notes/images

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/notes/images \
  -H "Authorization: Bearer $TRILOCORE_API_KEY" \
  -F "file=@./screenshot.png"

GET /api/v1/notes/images/{id}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X GET https://api.trilocore.ai/api/v1/notes/images/{id} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

POST /api/v1/notes/join/{token}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/notes/join/{token} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/notes/workspaces

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X GET https://api.trilocore.ai/api/v1/notes/workspaces \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

POST /api/v1/notes/workspaces

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/notes/workspaces \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

DELETE /api/v1/notes/workspaces/{workspace_id}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X DELETE https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/notes/workspaces/{workspace_id}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X GET https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

PATCH /api/v1/notes/workspaces/{workspace_id}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X PATCH https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/notes/workspaces/{workspace_id}/events

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X GET https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/events \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/notes/workspaces/{workspace_id}/invites

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X GET https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/invites \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

POST /api/v1/notes/workspaces/{workspace_id}/invites

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/invites \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

DELETE /api/v1/notes/workspaces/{workspace_id}/invites/{invite_id}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X DELETE https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/invites/{invite_id} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/notes/workspaces/{workspace_id}/notes

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X GET https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/notes \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

POST /api/v1/notes/workspaces/{workspace_id}/notes

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/notes \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

DELETE /api/v1/notes/workspaces/{workspace_id}/notes/{note_id}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X DELETE https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/notes/{note_id} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/notes/workspaces/{workspace_id}/notes/{note_id}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X GET https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/notes/{note_id} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

PUT /api/v1/notes/workspaces/{workspace_id}/notes/{note_id}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X PUT https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/notes/{note_id} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/notes/workspaces/{workspace_id}/notes/{note_id}/comments

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X GET https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/notes/{note_id}/comments \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

POST /api/v1/notes/workspaces/{workspace_id}/notes/{note_id}/comments

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/notes/{note_id}/comments \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

POST /api/v1/notes/workspaces/{workspace_id}/notes/{note_id}/status

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/notes/workspaces/{workspace_id}/notes/{note_id}/status \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

DELETE /api/v1/notes/{id}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native
curl -X DELETE https://api.trilocore.ai/api/v1/notes/{id} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

PUT /api/v1/notes/{id}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success not stated by any machine-readable source
Upstream gateway-native

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X PUT https://api.trilocore.ai/api/v1/notes/{id} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"