Delete a DLQ task (Conceptual API)

DELETE /dlq/{dlq_task_id}

Permanently removes a task from the Dead Letter Queue.

Path parameters

  • dlq_task_id string(uuid) Required

    The ID of the DLQ task to delete.

Responses

  • 204

    DLQ task deleted successfully.

  • 404 application/json

    The requested resource was not found.

    Hide response attribute Show response attribute object
    • error string
  • 500 application/json

    An unexpected error occurred on the server.

    Hide response attribute Show response attribute object
    • error string
DELETE /dlq/{dlq_task_id}
curl \
 --request DELETE 'http://localhost:8080/dlq/{dlq_task_id}'
Response examples (404)
{
  "error": "string"
}
Response examples (500)
{
  "error": "string"
}