Skip to main content
GET
/
api
/
organizations
/
{organizationId}
/
phone-numbers
List phone numbers assigned to users in the organization (SuperAdmin only)
curl --request GET \
  --url https://your-instance.example.com/api/organizations/{organizationId}/phone-numbers \
  --header 'Authorization: Bearer <token>'
{
  "assignments": [
    {
      "userId": "5f7b1c2e8a1d4e0012c3b4a6",
      "userName": "Sam Patel",
      "userEmail": "sam.patel@acme.example",
      "provider": "twilio",
      "phoneNumber": "+12362320246",
      "isDefault": true,
      "isInboundEnabled": true
    }
  ]
}

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

organizationId
string
required

Response

Phone number assignments returned

Returned by GET /api/organizations/{organizationId}/phone-numbers.

assignments
object[]
required