Get Accounts
This request returns a list of accounts.
get | /accounts |
Sample Request
A sample GET request to retrieve a list of accounts that match the criteria in the request URL. The request can include query parameters to filter, sort, and paginate the results.
A sample **GET** request to get accounts matching the criteria in the request URL:
```shell
curl -X GET \
'https://api.carrierx.com/conference/v2/accounts' \
-u 'conference_user_123:qwerty123'
Sample Response
200
response code with a list of Account objects:
{
"count": 1,
"has_more": false,
"items": [
{
"account_sid": "993a6552-b73b-41e5-a501-a788377ca8ed",
"properties": {},
"call_flow_sid": "fb2b69b1-6998-4cdc-b04c-a267c585f767",
"date_created": "2025-06-25T20:36:54.000Z",
"login": "conference_user_123",
"name": "John Smith"
}
],
"limit": 10,
"offset": 0,
"pagination": {},
"total": 1
}
This request is enabled for Pagination, Result Filtering, and Field Filtering.