Skip to main content

List Account Owners

GET
/accounts/{account_id}/account_owner

This endpoint should return a list of all account owners associated with the specified account.

A successful response must contain an <account> element. The <account> element must contain an <id> field and an account_owner element. Any other account fields will be ignored.

Response Fields

FieldRequiredType

address

Required
String

city

Required
String

country

Required
String

email

Required
String

owner_name

Required
String

phone

Required
String

postal_code

Required
String

state

Required
String

Expected Response

200
Language:xml

_15
<mdx version="5.0">
_15
<account>
_15
<id>account-67890</id>
_15
<account_owner>
_15
<address>998 Thompson Pine</address>
_15
<city>Salt Lake City</city>
_15
<country>United States</country>
_15
<email>test@testemail.com</email>
_15
<owner_name>Joe Johnson</owner_name>
_15
<phone>888-555-1212</phone>
_15
<postal_code>84601</postal_code>
_15
<state>Utah</state>
_15
</account_owner>
_15
</account>
_15
</mdx>