v2

latestOpenAPI 3.0.02026-08-0688139156.5 KB
Accounts

Get account

get/v1/account/{account_id}

Path parameters

account_idstring required

ID of an account

Example:act_0123456789ab

Response

OK

account_idstring required

ID of an account

account_namestring required

Name of the account

alert_emailsstring[] required

List of email addresses to send alert emails to

primary_contactstring required

Name of the primary contact

primary_emailstring email required

Email of the primary contact

primary_phonestring required

Phone number of the primary contact

Example response

{
  "account_id": "act_0123456789ab",
  "account_name": "Slide Inc.",
  "alert_emails": [
    "john.doe@gmail.com",
    "jane.smith@example.com",
    "user123@domain.net"
  ],
  "billing_address": {
    "City": "New York",
    "Country": "US",
    "Line1": "123 Main St",
    "Line2": "Apt 4B",
    "PostalCode": "10001",
    "State": "NY"
  },
  "primary_contact": "John Smith",
  "primary_email": "john.doe@gmail.com",
  "primary_phone": "+1 555-555-5555"
}