Delete Workflow
delete
https://api.flxpoint.com/workflow/{id}Use this when you want to delete workflow data through the API.
🔑 X-API-TOKEN⏱ 2 req/sToken: Account · Source · Channel
This page explains the endpoint. To send a live test request, use the interactive tester in Stoplight or your own Postman / HTTP client.
Permanently delete a workflow. The workflow CANNOT be recovered after this.
Request
Example request
delete
/workflow/{id}curl -X DELETE "https://api.flxpoint.com/workflow/{id}" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Responses
200OK
No schema documented for this status.
401Unauthorized
No schema documented for this status.
404If the workflow with the given `id` cannot be found.
No schema documented for this status.
OpenAPI fragment
{
"delete": {
"summary": "Delete Workflow",
"description": "Permanently delete a workflow. The workflow CANNOT be recovered after this.",
"parameters": [],
"responses": {
"200": {
"description": "OK"
},
"401": {
"description": "Unauthorized"
},
"404": {
"description": "If the workflow with the given `id` cannot be found."
}
}
}
}Ready to run it? Send the curl from your terminal or Postman, or use the interactive tester in Stoplight.Open in Stoplight