Retry a DLQ task (Conceptual API)

POST /dlq/{dlq_task_id}/retry

Re-queues a task from the Dead Letter Queue for delivery.

Path parameters

  • dlq_task_id string(uuid) Required

    The ID of the DLQ task to retry.

Responses

  • 202 application/json

    DLQ task accepted for retry.

    Hide response attributes Show response attributes object
    • new_task_id string(uuid)

      The ID of the newly created delivery task.

    • message string
  • 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
POST /dlq/{dlq_task_id}/retry
curl \
 --request POST 'http://localhost:8080/dlq/{dlq_task_id}/retry'
Response examples (202)
{
  "new_task_id": "string",
  "message": "Task requeued successfully."
}
Response examples (404)
{
  "error": "string"
}
Response examples (500)
{
  "error": "string"
}