Get Account by SID
This request returns data for an account, targeted by secure ID.
get | /accounts/{account_sid} |
Sample Request
A sample GET request to retrieve an account by its secure ID:
curl -X GET \
'https://api.carrierx.com/conference/v2/accounts/993a6552-b73b-41e5-a501-a788377ca8ed' \
-u 'conference_user_123:qwerty123'
Sample Response
200
response code with a serialized copy of the Account object:
{
"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"
}
This request is enabled for Field Filtering.
Path Arguments
Parameter | Data Type | Description |
---|---|---|
account_sid required | string | The account secure ID. |