customers

List Customers

get/v2/customers/

Query parameters

createdstring date-time
external_idstring
emailstring
namestring
countrystring
legal_idstring
startinteger
limitinteger

Response

Successful Response

Example response

{
  "range": {
    "start": 42,
    "end": 52,
    "limit": 10,
    "count": 1337,
    "has_more": true
  },
  "customers": [
    {
      "id": "cust_yWYfCSzsUUhr9KwMv7vuLZHX",
      "country": "FR",
      "created": "UniqueId123",
      "date_birth": "1950-05-04",
      "email": "test@test.com",
      "external_id": "UniqueId123",
      "legal_id": "AA732A82C93V20",
      "mobile": "+33100000000",
      "name": "Arthur Martin",
      "billing_address": "addr_yWYfCSzsUUhr9KwMv7vuLZHX",
      "shipping_address": "addr_yWYfCSzsUUhr9KwMv7vuLZHX"
    }
  ]
}

Changes