POST
/v1/mgmt/flow/delete

Delete a flow within a project utilizing a management key.

This endpoint is used to delete a flow from a project by giving an existing flow ID to be deleted.

See Also

  • See Flow Overview for more information on flows.
  • See Manage Flows for more information on managing (export, import, delete, disable, enable) flows.

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:ManagementKey\>

Try it

/v1/mgmt/flow/delete

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

idsarray<string>

Status codeDescription
200OK
curl -X POST "https://api.descope.com/v1/mgmt/flow/delete" \
  -d '{
  "ids": [
    "string"
  ]
}'
Was this helpful?