
Jobnimbus API Integration Profile
Information and guides about integrating with Jobnimbus API
Add Jobnimbus Integration to Your ProductRetrieve ALL Contacts in Jobnimbus API
This request allows you to retrieve all of the contacts within a JobNimbus account.
Response Codes:
- HTTP Status 200 = success
- Anything other status code = failure and will include an error message in the response
Request Parameters
Request parameters should be passed in the query string
size - number of elements to return (default: 1000)
from - zero based starting point to be used for pagination (default: 0)
sort_field - which field to sort by (default: date_created)
sort_direction = which direction to sort the results (default: 'desc')
fields - limit which fields to include in response (default: all fields will be included)
filter - URL encoded JSON filter object i.e.:
{
    "must": [
        {
            "range": {
                "date_created": {
                    "gte": 1459749600,
                    "lte": 1459835940
                }
            }
        }
    ]
}
Response:
Example of a partial response:
{
  "recid": 1003,
  "customer": "29a",
  "type": "contact",
  "created_by": "29b",
  "created_by_name": "Sam Burnet",
  "date_created": 1459789425,
  "date_updated": 1460051077,
  "owners": [
    {
      "id": "29b"
    }
  ],
  "location": {
    "id": 1,
    "parent_id": null,
    "name": "Developer Account"
  },
  "first_name": "Bruce",
  "last_name": "Wayne",
  "company": "Wayne Enterprises",
  "description": "Likes to wear costumes...",
  "email": "[email protected]",
  "home_phone": "8882223333",
  "mobile_phone": "",
  "work_phone": "",
  "fax_number": "",
  "address_line1": "123 S. Bat Street",
  "address_line2": null,
  "city": "Heber City",
  "state_text": "UT",
  "country_name": "United States",
  "zip": "84032",
  "website": "www.batman.com",
  "record_type": 1,
  "record_type_name": "Customer",
  "status": 2,
  "status_name": "Inspection",
  "source": 1,
  "source_name": "Referral",
  "sales_rep": "1m1",
  "sales_rep_name": "Sam Burnet",
  "jnid": "1l7",
  "geo": {
    "lat": 0,
    "lon": 0
  },
  ...
}
Input schema fields
| Field Name | API Key | Type | |
|---|---|---|---|
| Query | query | object | |
| Headers | headers | object |