Skip to main content
DELETE
/
api
/
v1
/
workflow
/
public
/
scheduled
/
:schedule_id
curl -X DELETE "https://app.refold.ai/api/v1/workflow/public/scheduled/{schedule_id}" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "linked_account_id: YOUR_LINKED_ACCOUNT_ID"
{
  "message": "Scheduled Job Deleted Successfully"
}
Permanently delete a schedule and deregister its job. To temporarily stop a schedule instead, use Pause Schedule.

Authentication

x-api-key
string
required
Your Refold API key.
linked_account_id
string
required
The linked account that owns the schedule.

Path Parameters

schedule_id
string
required
The schedule ID to delete.

Response

message
string
Confirmation message.
{
  "message": "Scheduled Job Deleted Successfully"
}
curl -X DELETE "https://app.refold.ai/api/v1/workflow/public/scheduled/{schedule_id}" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "linked_account_id: YOUR_LINKED_ACCOUNT_ID"