Skip to main content
GET
/
organizations
조직 목록 조회
curl --request GET \
  --url https://client-api.tryvox.co/v3/organizations \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "is_main": true,
      "created_at": 123,
      "parent_organization_id": "<string>",
      "webhook_url": "<string>"
    }
  ],
  "total_count": 123,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.

Query Parameters

cursor
string | null

이전 응답의 next_cursor 값입니다. 다음 페이지를 조회할 때 그대로 전달합니다.

limit
integer
default:50

반환할 최대 항목 수입니다. v3 목록 endpoint는 1~100을 허용합니다.

Required range: 1 <= x <= 100

Response

성공 응답

items
OrganizationListItemResponse · object[]
required

페이지 항목입니다.

total_count
integer
required

조건에 맞는 전체 항목 수입니다.

next_cursor
string | null

다음 페이지 커서입니다. 조회할 항목이 더 없으면 null입니다.