WebAPI – How do I update the task verification record?
This method allows you to change the task verification record of a work order.
The method to be used for changing the work order task verification record is: POST /api/mytenant/myorganization/maintenance/ workordertaskverifications/updateWorkOrderTaskVerificationInfo/{{companyKey}}/{{workOrderTaskVerificationKey}}
The parameters in the method are:
- companyKey: company key
- workOrderTaskVerificationKey: task verification key
Json example to update a task verification record
- {
"Description": "Task verification",
"VerificationDate": "2019-10-18T11:43:47+00:00",
"Employee": "P00003",
"Remarks": "Remarks",
"WorkOrderMaintenancePlan": "MP1",
"WOMaintenancePlanTaskId": "45D98B07-9F8B-4C27-90E4-6243AEAEE300",
"WOTaskId": "69703AF8-49EB-4C0A-B0A4-49FBE25F7D61",
"VerificationType": "VT1"
}
This method allows to change a work order task verification report according to the parameters filled in
- Description: the task verification description. This field is required.
- VerificationDate: verification date.
- Employee: employee key.
- Remarks: the observations.
- WorkOrderMaintenancePlan: the key of the WO maintenance plan.
- WOMaintenancePlanTaskId: the task identifier associated to the WO maintenance plan.
- WOTaskId: the task identifier for the WO additional work. This field cannot be used together with the maintenance plan or the maintenance plan task.
- VerificationType: the key of the verification type.
When a method is executed successfully, it returns a HttpStatusCode.OK.
Related Articles
WebAPI – How do I update the labor report?
This method allows you to change the labor record of a work order. The method to be used for changing the work order labor record is: POST /api/mytenant/myorganization/maintenance/workorderreportlabors/ ...
WebAPI – How do I update the material consumption report?
This method allows to change a material consumption. The method to be used when changing the work order material consumption ...
WebAPI – How to update the misc costs report?
This method allows you to change the misc cost of a work order. The method to be used for changing one other cost is: POST /api/mytenant/myorganization/maintenance/workorderreportmisccosts / ...
WebAPI - Deleting a type of task verification
This method allows you to delete a task verification type. The method to be used to delete a type of task verification is: DELETE url/api/mytenant/myorganization/maintenancecore/verificationtypes/{{verificationTypeKey}} The parameters being ...
Webapi - Creating a type of task verification
This method allows to create a type of task verification in a simplified manner. The method to be used when creating a type of task verification is: POST url/api/mytenant/myorganization/maintenancecore/verificationtypes Json example for creating ...