WebAPI - Deleting a requisition type
This method allows you to delete a requisition type.
The method to be used when deleting a requisition type is:
DELETE url/api/mytenant/myorganization/requisitionscore/requisitiontypes/{{requisitionTypeKey}}
The parameters being replaced on the method are:
- requisitionTypeKey: the key of the requisition type you wish to delete.
When this method is executed successfully, it returnsHttpStatusCode.204.
Related Articles
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 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 - Creating a requisition type
This method allows to create a type of requisition in a simplified manner. The method to be used to create a requisition type is: POSTurl/api/mytenant/myorganization/requisitionscore/requisitiontypes Json example for creating a type of requisition: ...
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: ...
WebAPI - Changing a requisition type attribute
This method allows to change a requisition type. The method to be used when changing a requisition type attribute is: PUT {{url}/api/{{tenant}}/{{organization}}/requisitionscore/requisitiontypes/{{requisitiontypeKey}}/{{atributo}} The parameters on ...