Non-profits


GET /reports/nonprofits

Resource information

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

Parameters

Name Required Description Example
nonProfitId optional Comma separated numerical IDs of the desired non-profit(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": 1,
  "itemCount": 3,
  "items": [
    {
      "nonProfitId": 1,
      "name": "Bump 50:50",
      "address": "206-250 The Esplanade",
      "email": "info@bump5050.com",
      "phoneNumber": "555-555-1234",
      "faxNumber": "",
      "federalTaxId": "",
      "primaryContact": {
        "firstName": "Dave",
        "lastName": "Kurland",
        "title": "",
        "email": "dave@bump5050.com",
        "phoneNumber": "555-555-1234",
        "faxNumber": ""
      },
      "secondaryContact": {
        "firstName": "",
        "lastName": "",
        "title": "",
        "email": "",
        "phoneNumber": "",
        "faxNumber": ""
      }
    },
    ...
  ]
}