/customers/filter.json
. Purely to validate a full name exists, see /customers/customer_validation.json
.
Ex. GET /customers.json?service_state=MI
returns all customers (paginated) in the state of Michigan
Ex. GET /customers.json?q=ilf
returns all customers with 'ilf' in the name (name only)
Ex. GET /customers.json?customer_source_id=12345
returns paginated customers by customer source 12345
Ex. GET /customers.json?begins_with=C&customers_page=6
returns page 6 of paginated customers whose name begins with 'C' (case-insensitive)
Ex. GET /customers/380.json
returns customer number 380
Ex. PUT {customer:{name: "Samantha"} /customers/380.json
changes customer 380’s name to Samantha
Ex. DELETE /customers/380.json
deletes customer 380 and returns {message: "Customer successfully deleted"}
/jobs/{id}/notes.json
.
Ex. GET /customers/380/notes.json
returns an array of paginated notes for customer 380
Ex. POST {note:{note: "All sales NET-30"}} /customers/380/notes.json
adds a note to customer 380.
Notice that the payload is a 'note' object which contains another key named 'note' which is the actual text of the note itself. POST reply includes an employee object for the note’s creator under the 'creator' key.
Ex. GET /customers/380/notes/24601.json
returns note 24601 for customer 380
Ex. PUT {note:{note:"A new note body"} /customers/380/notes/24601.json
changes the note body for notes 24601, which belongs to customer 380. The response to PUT is larger than a GET for the same note, and includes an employee object for the note’s creator under the ‘creator’ key.
Ex. DELETE /customers/380/notes/24601.json
deletes note 24601 from customer 380
DELETE /customers/6/notes/5161.json
, note 5161 wouldn’t have to belong to customer 6 and would still be deleted successfully even if another customer number was supplied).
This is likely an oversight and will be corrected at some point. It should not be relied on.
/customers/380/payments.json
returns all payments (paginated) for customer number 380/jobs/{id}/payments.json
. To modify or delete existing payments see /jobs/{id}/payments/{id}.json
.
Payments can only be created using the /jobs/{id}/payments.json
endpoint. A critical portion of the payment object, payment_application_ids, is automatically created if that endpoint is used, but it is not created if this one is used.
The structure of the payment object suggests that it’s possible to apply a payment to more than one job, though that has not been tested.
DELETE /customers/380/payments/24601.json
deletes payment number 24601 belonging to customer number 380 and returns it
/customers/filter.json
.
Ex. POST {name : "Clarence"} /customers/customer_validation.json
returns the customer whose name is 'Clarence'
On failure (no match) returns:
{status:"not found"}
On success (one match) returns:
{ "status":"exist", "customer_url":"/SLUG/customers/14907", "customer_name":"Clarence", "customer":"{CUSTOMER OBJECT} }
Ex. GET /customers/filter.json?name=obert
returns all customers whose name contains 'obert'
On failure (no matches) returns an array with a empty customer object:
{ "customers": [ { "customer_number": null, ...truncated customer object... } ] }
On success (one or more matches) returns:
"customers": [ one or more customer objects ]
Ex. GET /customers/380/jobs.json
returns all jobs for customer number 380
Ex. GET /customers/380/jobs.json?status=unscheduled
returns all unscheduled jobs for customer number 380
Ex. GET /customers/380/jobs.json?status[]=unscheduled&status[]=complete
returns all unscheduled or complete jobs for customer number 380
Ex. POST {job:{job_type_id:61, description: "Test job"}} /customers/6/jobs.json
creates a job for customer 6 of type 61, with a description of 'Test Job'. Returns the newly-created job.
/opportunities.json
for retrieving opportunities, though the capabilities are not identical.
Pulling opportunities for a specific customer requires the use of APIv3. See /jobs.json
for another way to create jobs.
/jobs/{id}.json
.
Ex. GET /customers/380/jobs/617.json
returns job number 617 belonging to customer number 380
Ex. PUT {job:{description:"A new description"}} /customers/380/jobs/617.json
modifies the description of job number 617 belonging to customer number 380. Returns the updated job.
Ex. DELETE /customers/380/jobs/617.json
will delete the job, and return it.