Customers


GET /reports/customers

Resource information

Response Format JSON
Requires Authentication? Yes
Rate Limited? Yes
Requests / 1 minute window 60

Parameters

Name Required Description Example
customerId optional Comma separated numerical IDs of the desired customer(s). 1,2,3
count optional Specifies the number of results to return per page (see page below). The default is 15, with a maximum of 5,000. 20
page optional Causes the collection of events to be broken into "pages" of consistent sizes (specified by the count parameter). If no page is provided, a value of 1 will be assumed, which is the first "page." 1

Response


{
  "currentPage": 1,
  "nextPage": 2,
  "previousPage": null,
  "totalPages": 4,
  "itemCount": 15,
  "items": [
    {
      "customerId": 1,
      "firstName": "Dave",
      "lastName": "Kurland",
      "title": "Mr.",
      "address": "250 The Esplanade",
      "suite": "206",
      "city": "Toronto",
      "state": "ON",
      "zipCode": "M5A4J6",
      "email": "info@bump5050.com",
      "phoneHome": "555-555-1234",
      "phoneWork": "555-555-1234",
      "phoneMobile": "555-555-1234",
      "subscriptions": {
        "email": true,
        "sms": false
      }
    },
    ...
  ]
}