TypeScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.useautumn.com/v1/platform/organizations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"list": [
{
"slug": "<string>",
"name": "<string>",
"created_at": 123
}
],
"total": 123,
"limit": 123,
"offset": 123
}Platform (Beta)
List Organizations
Lists all organizations created by your master organization. Supports pagination.
GET
/
platform
/
organizations
TypeScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.useautumn.com/v1/platform/organizations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"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
Autumn API key with Bearer prefix
Query Parameters
Number of organizations to return (1-100)
Required range:
1 <= x <= 100Number of organizations to skip for pagination
Required range:
x >= 0⌘I