v2
latestOpenAPI 3.0.02026-08-0688139156.5 KBAccounts
List accounts
get/v1/account
Query parameters
offsetinteger
Starting index for pagination
limitinteger
Number of items to return for pagination
sort_by'name'
Sort by a specific field
sort_ascboolean
Sort in ascending order
created_afterstring date-time
Filter results to after a specific creation timestamp (RFC3339 format)
created_beforestring date-time
Filter results to before a specific creation timestamp (RFC3339 format)
Response
OK
Example response
{
"data": [
{
"account_id": "act_0123456789ab",
"account_name": "Slide Inc.",
"alert_emails": [
"john.doe@gmail.com",
"jane.smith@example.com",
"user123@domain.net"
],
"billing_address": {
"City": "New York",
"Country": "US",
"Line1": "123 Main St",
"Line2": "Apt 4B",
"PostalCode": "10001",
"State": "NY"
},
"primary_contact": "John Smith",
"primary_email": "john.doe@gmail.com",
"primary_phone": "+1 555-555-5555"
}
],
"pagination": {
"next_offset": 10
}
}