List Organizations

GEThttps://sandbox-api.truthlocks.com/v1/orgsAuth required

Returns a list of organizations associated with the authenticated tenant. This endpoint is typically used by platform administrators to manage tenant structure.

Query Parameters

limitnumber

Maximum number of items to return

Defaults to 20

cursorstring

Pagination cursor for the next page of results

Responses

{
  "items": [
    {
      "id": "org_7y8i2p_abc",
      "name": "Acme Corp",
      "slug": "acme-corp",
      "status": "ACTIVE",
      "created_at": "2026-01-01T00:00:00Z"
    }
  ],
  "next_cursor": "cursor_xyz123"
}
GET/v1/orgs
Language
CredentialsHEADER
Authorization
cURL Request
Examples ▾
curl --request GET \
  --url https://sandbox-api.truthlocks.com/v1/orgs \
  --header 'accept: application/json' \
  --header 'content-type: application/json' \
  --data '{}'
Response

Click Try It! to send a real request, or view sample responses: