Procedure marked as not-applicable
Your WebHook receives a notification when a procedure is marked as applicable or not applicable by the customer or CorrigoPro Desktop.
Fields
Name | Type | Verification | Description |
---|---|---|---|
Header | MessageHeader | Mandatory | Complex object that contains important information about the request. |
ProcedureId | Int | Mandatory | A unique identifier for procedure. |
IsMarkedNa | Bool | Mandatory | If true, it means the procedure was marked as not applicable. If false, procedure was marked as applicable again. |
Example notification:##
{
"ProcedureId": 111,
"IsMarkedNa": true,
"Header": {
"WorkOrderId": 222,
"BranchId": 333,
"Sender": {
"Name": "Jacob Brown",
"Phone": "+12342342211",
"Type": "CorrigoPro"
},
"Action": "ProcedureMarked",
"ActionDate": "2018-05-03T14:01:44.3831314Z",
"ApiVersion": "1.1",
"MessageId": "3c7fd0cf-e2a6-4d56-8ab6-f10678ed85b9"
}
}
Updated over 5 years ago