Skip to main content
GET
/
platform
/
beta
/
orgs
cURL
curl -X GET 'https://api.useautumn.com/v1/platform/beta/orgs?limit=20&offset=0' \
-H 'Authorization: Bearer am_sk_test_...'
{
  "list": [
    {
      "slug": "<string>",
      "name": "<string>",
      "created_at": 123
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}
Lists all organizations created by your master organization. Supports pagination to handle large numbers of tenant organizations.
Only returns organizations that were created by your master organization through the Platform API. Organization slugs in the response do not include the master org ID prefix.

Authorizations

Authorization
string
header
required

Autumn API key with Bearer prefix

Query Parameters

limit
integer
default:10

Number of organizations to return (1-100)

Required range: 1 <= x <= 100
offset
integer
default:0

Number of organizations to skip for pagination

Required range: x >= 0

Response

Organizations retrieved successfully

list
object[]
total
number

Total number of organizations returned.

limit
number

Limit used in the query.

offset
number

Offset used in the query.

I