Technician checked out

Every time your company's work order is completed via CorrigoPro Desktop/Mobile, your WebHook receives notification containing detailed information provided to a customer during the Complete operation.

Fields

FieldValue TypeVerificationDescription
HeaderMessageHeaderMandatoryComplex object that contains important information about the request.
CommentstringMandatory,
Maximum length: 3000
An actor’s comment justifying the action.
LocationGeoLocationMandatoryCoordinates of a technician during work order completion.
ProceduresProcedure[]OptionalContains information about Procedures.
CheckListCheckListItem[]* OptionalContains information about a CheckList.
RepairInfoRepairInfo** OptionalContains repair code and repair category information provided during work order completion.
CustomFieldsCustomField[]** OptionalContains values of custom fields provided during work order completion.

* Mandatory if available in a work order. All items should be in state other than Uncompleted. (Note: See Warning below)
** Mandatory - depends on the customer settings. Custom field values are case-sensitive.

❗️

Important

Checklists are becoming Procedures for most Enterprise clients on March 22, 2018, and we discourage their usage.

Example

{
	"Comment": null,
	"Location": {
		"Latitude": 36.281445,
		"Longitude": -75.794662
	},
	"CheckList": null,
	"RepairInfo": {
		"CodeId": 2,
		"Code": "Checked operation - unit OK",
		"CategoryId": 1,
		"Category": "Beverage Equipment"
	},
	"CustomFields": null,
	"Header": {
		"WorkOrderId": 42,
		"BranchId": 500772,
		"Sender": {
			"Name": "Jon Snow",
			"Phone": "+12025550141",
			"Type": "CorrigoPro"
		},
		"Action": "CheckedOut",
		"ActionDate": "2017-10-05T12:55:40.7456893Z",
		"ApiVersion": "1.0",
		"MessageId": "ffc0ba5e-649d-417c-939c-f7dd5b073508"
	}
}