Skip to main content

Atrium API

List Account Owners

Use this endpoint to check whether identity data is available for a specific member. It returns the account_owners resource, which contains an array with data about the account owners for each account associated with the member.

GET
/users/{user_guid}/members/{member_guid}/account_owners

Request sample

Language:sh

_10
curl -i 'https://vestibule.mx.com/users/{user_guid}/members/{member_guid}/account_owners' \
_10
-H 'Accept: application/vnd.mx.atrium.v1+json' \
_10
-H 'MX-API-Key: {mx_api_key}' \
_10
-H 'MX-Client-ID: {mx_client_id}'

Response sample

200
Language:json

_38
{
_38
"account_owners": [
_38
{
_38
"guid": "ACO-123",
_38
"user_guid": "USR-123",
_38
"member_guid": "MBR-123",
_38
"account_guid": "ACT-123",
_38
"owner_name": "Donnie Darko",
_38
"address": "123 This Way",
_38
"city": "Middlesex",
_38
"state": "VA",
_38
"postal_code": "00000-0000",
_38
"country": "US",
_38
"email": "donnie@darko.co",
_38
"phone": "555-555-5555"
_38
},
_38
{
_38
"guid": "ACO-456",
_38
"user_guid": "USR-123",
_38
"member_guid": "MBR-123",
_38
"account_guid": "ACT-123",
_38
"owner_name": "Susan Darko",
_38
"address": "456 That Way",
_38
"city": "Middlesex",
_38
"state": "VA",
_38
"postal_code": "00000-0000",
_38
"country": "US",
_38
"email": "susan@darko.co",
_38
"phone": "555-555-5555"
_38
}
_38
],
_38
"pagination": {
_38
"current_page": 1,
_38
"per_page": 25,
_38
"total_entries": 2,
_38
"total_pages": 1
_38
}
_38
}