Batch retry all DLQ entries, optionally filtered by error type
Input
Encoding
application/jsonerrorType
string
Optional
Filter entries by error type before retrying
Output
Encoding
application/jsonretriedCount
integer
Required
Number of entries requeued
Errors
AuthenticationRequired
AdminRequired
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",
"properties": {
"errorType": {
"type": "string",
"description": "Filter entries by error type before retrying"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"retriedCount"
],
"properties": {
"retriedCount": {
"type": "integer",
"description": "Number of entries requeued"
}
}
},
"encoding": "application/json"
},
"description": "Batch retry all DLQ entries, optionally filtered by error type"
}