Remove a single DLQ entry without retrying
Input
Encoding
application/jsonindex
integer
Required
Index of the DLQ entry to dismiss
Output
Encoding
application/jsonmessage
string
Optional
Status message
success
boolean
Required
Whether the entry was dismissed
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 dismiss"
}
}
},
"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 dismissed"
}
}
},
"encoding": "application/json"
},
"description": "Remove a single DLQ entry without retrying"
}