Skip to main content

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.

AttributeData TypeDescription
account_sid
read only
stringThe account secure ID.
date_created
read only
stringThe date and time when the account was created.
login
read only
stringThe login that is used as part of the Mediator API credentials.
name
read only
stringThe account name.
password
read only
stringThe 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",
}