Webapi - Creating a verification
This method allows to create a verification in a simplified manner.
The method to be used when creating a verification is:
POST url/api/mytenant/myorganization/maintenancecore/verifications
Json example for creating a verification:
{
"verificationKey": "VER",
"description": "Verificação",
"remarks": null
}
}
This method allows to create a verification according to the
parameters filled in:
- verificationKey: The verification key. This field is
mandatory.
- description: Short description of the verification. This field is
mandatory.
- remarks: Remarks.
When this method is executed successfully, it returns
HttpStatusCode.201Created.
Related Articles
WebAPI - Creating a warehouse
This method allows to create a warehouse in a simplified manner. The method to be used when creating a warehouse: POST url/api/mytenant/myorganization/inventorycore/warehouses Json example for creating a warehouse: 1. { "warehouseKey": "W2", ...
WebAPI - Creating a request
This method allows to create a request in a simplified manner. The method to be used when creating a request: POST url/api/mytenant/myorganization/Requests/requests Json example for creating a request: { "requestKey": "00001", "description": "Vidro ...
WebAPI - Creating a requisition type
This method allows creating a type of requisition in a simplified manner. The method to be used to create a requisition type is: POST url/api/mytenant/myorganization/requisitionscore/requisitiontypes Json example for creating a type of requisition: ...
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 - 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 ...