Requeue a single DLQ entry for reprocessing
Input
Encoding
application/jsonindex
integer
Required
Index of the DLQ entry to retry
Output
Encoding
application/jsonmessage
string
Optional
Status message
success
boolean
Required
Whether the entry was requeued
Errors
AuthenticationRequired
AdminRequired
InvalidRequest
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"index"
],
"properties": {
"index": {
"type": "integer",
"description": "Index of the DLQ entry to retry"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
},
{
"name": "InvalidRequest"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"message": {
"type": "string",
"description": "Status message"
},
"success": {
"type": "boolean",
"description": "Whether the entry was requeued"
}
}
},
"encoding": "application/json"
},
"description": "Requeue a single DLQ entry for reprocessing"
}