Deleting flow services

Delete a flow service and all its dependencies from a particular project.

Before you begin

To delete flow services within a project, you need an admin access. Only admins have the necessary permissions for this activity. If you do not have admin access but hold a custom role, verify that you have the write access specifically for the project where you intend to delete flow services.

About this task

Complete the following steps:

Procedure

  1. In a REST client platform, add the authentication details of the tenant that is associated with the Flow service you want to delete.
    
    //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"
    }
  2. Make a DELETE request at the URL of the Flow service.

    URL Syntax - <domain>/apis/v1/rest/projects/:project/flows/:flow

    In this URL request, /:project is the name of the project you want to delete./:flow is the name of the flow service that you want to delete.

    If the request is successful, you receive the response code for success.
    {
     output: 
    	{
    	message: "Object deleted successfully."
    	}
    }