Skip to main content
GET
/
api
/
organizations
/
{id}
Get an organization by id (SuperAdmin only)
curl --request GET \
  --url https://your-instance.example.com/api/organizations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "_id": "5f7b1c2e8a1d4e0012c3b400",
  "name": "Acme Corp",
  "phoneNumber": "+14165550100",
  "address": "123 Yonge St, Toronto, ON",
  "logoUrl": "https://cdn.example.com/logos/acme.png?sig=...",
  "credentials": {
    "_id": "5f7b1c2e8a1d4e0012c3b410",
    "anthropicApiKey": "sk-ant-api03-EXAMPLE-key-redacted",
    "sinchServicePlanId": "srv-plan-example-123"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

Organization returned

Full organization document (Mongo-shaped) with populated credentials and a resolved logoUrl. Shape is intentionally permissive because the document is returned as-is from Mongo.

_id
string
name
string
phoneNumber
string
address
string
logoUrl
string | null
credentials
object