Completion info changed
When a work order's completion information has changed after the work order is officially completed (i.e., during invoice submission), a notification is sent containing adjusted completion info.
Note
Although the user may make subsequent changes to the completion info during invoice edit, notification is sent only after invoice submission, containing the latest completion info state.
Fields
Field | Value Type | Verification | Description |
---|---|---|---|
Header | MessageHeader | Mandatory | Complex object that contains important information about the request. |
Comment | string | Mandatory, Maximum length: 3000 | An actorโs comment justifying the action. |
RepairInfo | RepairInfo | ** Optional | Contains repair code and repair category information provided during work order completion. |
CustomFields | CustomField[] | ** Optional | Contains values of custom fields provided during work order completion. |
Example notification: Attachment added
{
"Comment": "Completion info has been changed",
"RepairInfo": {
"Code": "Checked operation - unit OK",
"Category": "Beverage Equipment",
"CodeId": 2,
"CategoryId": 1
},
"CustomFields": [{
"Id": 15,
"Value": "Lorem ipsum dolor sit amet #1"
}
],
"Header": {
"WorkOrderId": 42,
"BranchId": 501096,
"Sender": {
"Name": "John Snow",
"Phone": "+12025550141",
"Type": "CorrigoPro"
},
"Action": "CompletionInfoChanged",
"ActionDate": "2018-06-05T14:05:14.3497968Z",
"ApiVersion": "1.1",
"MessageId": "b643ecbc-0c80-4906-80cf-5a6786bbe803"
}
}
Updated over 5 years ago