Skip to main content
GET
/
v1
/
orgs
/
{id}
Get Organization
curl --request GET \
  --url https://api.truthlocks.com/v1/orgs/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "org_7y8i2p_abc",
  "name": "Acme Corp",
  "slug": "acme-corp",
  "status": "ACTIVE",
  "branding": {
    "logo_url": "https://cdn.acme.com/logo.png",
    "primary_color": "#10b981"
  },
  "member_count": 42,
  "created_at": "2026-01-01T00:00:00Z"
}
Returns detailed information about a specific organization. Includes status, branding settings, and member counts.

Parameters

id
string
required
The unique identifier of the organization

Responses

{
  "id": "org_7y8i2p_abc",
  "name": "Acme Corp",
  "slug": "acme-corp",
  "status": "ACTIVE",
  "branding": {
    "logo_url": "https://cdn.acme.com/logo.png",
    "primary_color": "#10b981"
  },
  "member_count": 42,
  "created_at": "2026-01-01T00:00:00Z"
}

Authorizations

X-API-Key
string
header
required

API key for machine-to-machine authentication

Path Parameters

id
string<uuid>
required

Response

Organization details

id
string<uuid>
tenant_id
string<uuid>
name
string
slug
string
status
enum<string>
Available options:
ACTIVE,
SUSPENDED
created_at
string<date-time>