Skip to main content
GET
/
v2
/
account
/
address
Get address
curl --request GET \
  --url https://api.example.com/v2/account/address/ \
  --header 'Authorization: Bearer <token>'
{
  "address": {
    "streetLine1": "<string>",
    "streetLine2": "<string>",
    "streetLine3": "<string>",
    "city": "<string>",
    "countrySubdivision": "<string>",
    "zipCode": "<string>",
    "country": "<string>",
    "source": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

subAccountId
string<uuid>

Operate against a sub-account of the authenticated main account.

Response

OK

address
object