Accounts
Get Account By ID
Fetch account details by ID, including the mailing address, date of birth, phone number, and country of tax residency of the account-holder entity when on file.
get/v1/accounts/{account_id}
Path parameters
account_idinteger required
Account identifier
Response
Account details
Example response
{
"error": {
"code": 400,
"message": "Order quantity must be greater than zero"
},
"data": {
"account_holder_entity_id": 987654321,
"close_date": null,
"country_of_tax_residency": "US",
"date_of_birth": "1985-03-15",
"full_name": "Test Trading Account",
"id": 19816,
"mailing_address": {
"city": "New York",
"country": "USA",
"line1": "4 World Trade Center",
"line2": "150 Greenwich Street, Floor 45",
"postal_code": "10007",
"state": "NY"
},
"open_date": "2023-01-15",
"options_level": 1,
"phone_number": "+12125550123",
"short_name": "TST-ACCOUNT-01",
"status": "ACTIVE",
"subtype": "MARGIN",
"type": "CUSTOMER"
}
}