Webapi - Deleting a verification
This
method allows you to delete a verification.
The method
to be used when deleting a verification is:
DELETE
url/api/mytenant/myorganization/maintenancecore/verifications/{{verificationKey}}
The
parameters being replaced on the method are:
- verificationKey: key of the
verification you wish to delete.
When this
method is executed successfully, it returns HttpStatusCode.204.
Related Articles
WebAPI - Deleting a requisition
This method allows you to delete a requisition. The method to be used when deleting a requisition is: DELETE url/api/mytenant/myorganization/requisitions/requisitions/{{company}}/{{requisitionKey}} The parameters being replaced on the method are: ...
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/ ...
WebAPI - Deleting a brand
This method allows you to delete a brand. The method to be used when deleting a brand is: DELETE url/api/mytenant/myorganization/businesscore/brands/{{brandKey}} The parameters being replaced on the method are: {{brandKey}}: key of the brand you ...
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 – How do I get work orders assigned to user?
This method returns the work orders list assigned to each employee of a specific company. The method to be used to get the work orders list assigned to the employee is: GET ...