Account Object
The Account object represents the Mediator API account associated with a specific partner. It provides identifying and credential-related information used for authentication and management of Mediator endpoints.
Each account includes a secure ID, creation timestamp, and login credentials used to authenticate API requests. The password field is never returned in the response for security reasons.
Account Object Attributes
These fields and values make up the JSON object that gets returned with successful requests.
| Attribute | Data Type | Description |
|---|---|---|
| account_sid read only | string | The account secure ID. |
| date_created read only | string | The date and time when the account was created. |
| login read only | string | The login that is used as part of the Mediator API credentials. |
| name read only | string | The account name. |
| password read only | string | The password that is used as part of the Mediator API credentials. The field is hidden and not returned in the response. |
Sample Account object
{
"account_sid": "13e156f7-0d21-4ba6-9e32-c56dc2c6098f",
"date_created": "2025-04-09T22:47:56.609Z",
"login": "mediator_user_123",
"name": "John Smith",
}