Webapi - Creating a type of task verification

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 a type of task verification:
 
  1. {
            "verificationTypeKey""NC",
            "description""Não conforme",
            "notesRequired"false,
            "isDefault"false,
            "remarks"null,
            "verification""CONF"
        }
    }
 
This method allows to create a type of task verification according to the parameters filled in:
  1. verificationTypeKey: The verification type key. This field is mandatory.
  2. description: Short description of the verification type. This field is mandatory.
  3. notesRequired: Mandatory notes. Fill in this field with true or false. If you wish this field to have mandatory notes on the task verification, fill in with true.
  4. isDefault: "Is Default?" Fill in this field with true or false. If you wish this field to be default on the task verification, fill in with true.
  5. remarks: Remarks.
  6. verification: The verification key. This field is mandatory.
When this method is executed successfully, it returns HttpStatusCode.201Created.




    • Related Articles

    • 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 – 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 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 - 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 to create a part of the service type?

      This method allows to create a part of the service type in a simplified manner. The method to be used to create a part of the service type is: POST url/api/mytenant/myorganization/businesscore/parts Json example to create a part of the service type: ...