Query parameters

  • cursor string

    A cursor returned from a previous call to /orgs

Responses

  • Your organizations

    Hide response attributes Show response attributes object
    • orgs array[object] Required
      Hide orgs attributes Show orgs attributes
    • cursor string

      The cursor to use on the next call to retrieve the next page of organizations. If no cursor is returned, there are no more pages to retrieve.

GET /orgs
curl \
 -X GET https://api.statebacked.dev/orgs \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "orgs": [
    {
      "id": "org_uHvZHpF4STWvMg8BKVCUTg",
      "name": "string",
      "role": "admin",
      "createdAt": "2023-05-04T09:42:00+00:00",
      "limits": {
        "monthlyEventsLimit": 42.0,
        "monthlyReadsLimit": 42.0
      }
    }
  ],
  "cursor": "string"
}
Response examples (200)
{
  "orgs": [
    {
      "id": "org_uHvZHpF4STWvMg8BKVCUTg",
      "name": "string",
      "role": "admin",
      "createdAt": "2024-05-04T09:42:00+00:00",
      "limits": {
        "monthlyEventsLimit": 42.0,
        "monthlyReadsLimit": 42.0
      }
    }
  ],
  "cursor": "string"
}