Organization Subscriptions

List Organization Subscriptions

Pagination

  • Cursor pagination (recommended)
  • Offset pagination

See Pagination.

Returns a maximum of 100 records per page.

Allowed For:

  • Agents
  • End users

For end users, the response will only list the subscriptions created by the requesting end user.

get/api/v2/organization_subscriptions

Response

Successful response

countinteger

the total record count

next_pagestring url nullable

the URL of the next page

previous_pagestring url nullable

the URL of the previous page

Example response

{
  "organization_subscriptions": [
    {
      "created_at": "2009-07-20T22:55:29Z",
      "id": 1234,
      "organization_id": 32,
      "user_id": 482
    }
  ]
}

Changes