ts.org.get

Retrieve an organization by ID.

Retrieve an organization by ID.

Requires authentication

Description

Retrieves detailed information about a specific organization, including member count and endeavour count.

Parameters

NameTypeRequiredDefaultDescription
idstringYesOrganization ID

Response

Returns the organization with member and endeavour counts.

{
  "created_at": "2026-02-06T13:36:24Z",
  "description": "Software and consulting for financial technology",
  "endeavour_count": 1,
  "id": "org_1d9cb149497656c7...",
  "member_count": 3,
  "metadata": {},
  "name": "Quest Financial Technologies",
  "status": "active",
  "updated_at": "2026-02-06T13:36:24Z"
}

Errors

CodeDescription
not_authenticatedNo active login for this session
not_foundOrganization with this ID does not exist

Examples

Get organization by ID

Request:

{
  "id": "org_1d9cb149497656c7..."
}

Response:

{
  "created_at": "2026-02-06T13:36:24Z",
  "endeavour_count": 1,
  "id": "org_1d9cb149497656c7...",
  "member_count": 3,
  "name": "Quest Financial Technologies",
  "status": "active",
  "updated_at": "2026-02-06T13:36:24Z"
}