Accounts
List your accounts
List all of your Sequence accounts.
GET
Headers
Your API credentials. Eg. Basic {credentials}
.
Use this header to select an API version
Available options:
2024-07-30
Query Parameters
Maximum number of objects to return per-page. Must be between 1 and 100 (inclusive).
Pagination offset. To page through items, omit this parameter to retrieve the first page, and then successively use the value you get from pagination.after
or pagination.before
to retrieve each page.
Pagination offset. To page through items, omit this parameter to retrieve the first page, and then successively use the value you get from pagination.next
or pagination.previous
to retrieve each page.
Response
200
application/json
OK
A list of Sequence accounts that you have access to.
Example:
[
{
"id": "7e330949-a175-496a-a060-27821656ce34",
"createdAt": "2022-06-28T16:47:00Z",
"sequenceOrganisationId": "13448448-ce43-4874-8acf-8ff2a8ca24c1",
"companyName": "Acme Inc.",
"companyNumber": "GB123987",
"country": "GB",
"sendCustomerNotifications": true,
"alertEmailAddresses": ["alerts@example.com"]
}
]
Results pagination
Example:
{
"after": "ZTMwOWU5NDgtMDg4ZS00ZDc3LWI2NTQtY2Q4NTQ5OGYxNTU1IzE2NTgyNjA4NTYwMzMwMTMjREVTQw==",
"before": "NjRlZjJmZjktMmJjYi00M2RiLWI0ZDUtOTAxMDU4MjRiMTdmIzE2NTgyNjA3NTk3NTE2ODEjQVND",
"totalResultSize": 100
}