List all billing addresses

Returns a list of billing addresses. The billing addresses are returned sorted by creation date in ascending order.

GET/v3/billing/addresses
JWT
paymentMethod:read

Parameters

NameTypeInDescription
pageintegerqueryThe page number.
limitintegerqueryThe number of records per page. Must be a number between 1 and 100.
sortstringqueryThe sort string to sort the returned records e.g. "-createdAt"

Responses

200 OK
[
  {
    "id": "string",
    "firstLine": "string",
    "secondLine": "string",
    "city": "string",
    "postalCode": "string",
    "region": "string",
    "countryCode": "string",
    "name": "string",
    "taxIdentifier": "string",
    "contacts": [
      {
        "name": "string",
        "email": "string"
      }
    ],
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]