Update Inspections
Update Inspection Status
Change an inspection's status by sending a PUT request to the /inspections/{inspectionId} endpoint with the new inspection_status_id value.
For example, to close an inspection, set inspection_status_id to 5:
PUT /inspections/{inspectionId}
{
"inspection_status_id": 5
}Not all transitions are valid — each status has specific statuses it can move to. For the full list of statuses, their IDs, descriptions, and allowed transitions, see Inspection Statuses.
Try it out in the API Reference: Inspections > Updating an existing inspection request.
Updating Customer Information
The customer's information occasionally needs updating. A common situation would be that the phone number or email address on record is incorrect, or the value of a custom field needs modification. The customer's information can be updated via a PUT to the /inspection/{inspectionId} endpoint.
Try it out in the API Reference via Inspections > Updating an existing inspection request.
Updated about 1 month ago
