Delete a recipe from your tenant.
About this task
Complete the following steps:
Procedure
- In a REST client platform, add the authentication details of the tenant from where you
want to delete a recipe.
//In case of Instance API key
Headers:
{
"x-instance-api-key": "instance_api_key"
}
// In case of MCSP or ISV token
Headers:
{
"Authorization": "mcsp_or_isv_token"
}
- Make a DELETE request at the URL of the project.
URL syntax: <domain>/apis/v1/rest/recipes/:uid
In this URL request, /:uid is the ID of the recipe you want to delete.
Method: DELETE
If the request is successful, you receive the response code for success.
{
output:
{
"message": "Object deleted successfully."
}
}