DELETE request with the target workflow’s ID instructs Flowmatic to remove the workflow definition and every run record associated with it. This helps you keep your account tidy and ensures that stale workflows are not accidentally triggered.
Endpoint
Authorization: Bearer <accessToken> header required.Request body: None.
Path Parameters
string
required
The unique ID of the workflow you want to permanently delete. You can retrieve this value from the List Workflows or Get Workflow endpoints.
Example Request
Replace:workflowId with the ID of the workflow you want to delete:
Response
A successful deletion returns HTTP204 No Content. The response body is empty. If the workflow ID does not exist or does not belong to your account, the API returns 404 Not Found.