Skip to main content
GET
/
api
/
organizations
/
section-types
/
{id}
Get section/entity types for an organization
curl --request GET \
  --url https://your-instance.example.com/api/organizations/section-types/{id} \
  --header 'Authorization: Bearer <token>'
{
  "builtIn": [
    "Contact",
    "Application",
    "Conversation"
  ],
  "custom": [
    "Vehicle"
  ],
  "all": [
    "Contact",
    "Application",
    "Conversation",
    "Vehicle"
  ],
  "configs": [
    {
      "_id": "5f7b1c2e8a1d4e0012c3b500",
      "type": "Contact"
    },
    {
      "_id": "5f7b1c2e8a1d4e0012c3b501",
      "type": "Vehicle"
    }
  ]
}

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

Section types returned

builtIn
string[]
custom
string[]
all
string[]
configs
object[]