Skip to main content
GET
/
customers
/
{uuid}
/
addresses
List customer addresses
curl --request GET \
  --url https://api.truust.io/2.0/customers/{uuid}/addresses \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "self": "<string>",
      "uuid": "<string>",
      "name": "<string>",
      "email": "<string>",
      "prefix": "<string>",
      "phone": "<string>",
      "line1": "<string>",
      "line2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "country": "<string>",
      "zip_code": "<string>",
      "tag": "<string>",
      "metadata": {},
      "created_at": "2023-11-07T05:31:56Z",
      "connections": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Use your account's Secret Key as the Bearer token.

Path Parameters

uuid
string
required

Customer UUID.

Response

200 - application/json

List of addresses

data
object[]