Skip to main content
DELETE
/
api
/
tasks
Delete scheduled task
curl --request DELETE \
  --url https://recoup-api.vercel.app/api/tasks \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "id": "aade2bce-55c7-468e-a606-c4e76fb2ea2a"
}
'
{
  "status": "success"
}

Documentation Index

Fetch the complete documentation index at: https://developers.recoupable.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Your Recoup API key. Learn more.

Body

application/json

JSON object containing the task id to delete.

id
string<uuid>
required

UUID of the task to delete

Example:

"aade2bce-55c7-468e-a606-c4e76fb2ea2a"

Response

Task deleted successfully.

status
enum<string>
required

Status of the delete operation

Available options:
success