Autumn's V2 API is live in beta. We recommend using this version.
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.useautumn.com/v1/platform/users', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"list": [
{
"email": "jsmith@example.com",
"created_at": 123,
"organizations": [
{
"slug": "<string>",
"name": "<string>",
"created_at": 123
}
]
}
],
"total": 123,
"limit": 123,
"offset": 123
}Lists all users created by your master organization. Supports pagination and optional expansion of related organizations.
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.useautumn.com/v1/platform/users', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"list": [
{
"email": "jsmith@example.com",
"created_at": 123,
"organizations": [
{
"slug": "<string>",
"name": "<string>",
"created_at": 123
}
]
}
],
"total": 123,
"limit": 123,
"offset": 123
}Documentation Index
Fetch the complete documentation index at: https://docs-v1.useautumn.com/llms.txt
Use this file to discover all available pages before exploring further.
Autumn API key with Bearer prefix
Number of users to return (1-100)
1 <= x <= 100Number of users to skip for pagination
x >= 0Comma-separated list of fields to expand. Currently supports: 'organizations'