curl -X POST "http://localhost:9090/message_retry" \
-H "Content-Type: application/json" \
-d \
'[
{
"messageid": "0x123..."
}
]'
const response = await fetch('http://localhost:9090/message_retry', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify([
{
messageid: "0x123..."
}
])
});
import requests
response = requests.post('http://localhost:9090/message_retry', json=[
{
'messageid': '0x123...'
}
])
HTTP API
Retry Messages
POST
/
message_retry
curl -X POST "http://localhost:9090/message_retry" \
-H "Content-Type: application/json" \
-d \
'[
{
"messageid": "0x123..."
}
]'
const response = await fetch('http://localhost:9090/message_retry', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify([
{
messageid: "0x123..."
}
])
});
import requests
response = requests.post('http://localhost:9090/message_retry', json=[
{
'messageid': '0x123...'
}
])
Trigger retry of failed messages matching specific patterns. This resets the retry count to 0 and re-queues the messages for processing.
Show Request Body
Show Request Body
Show Response Body
Show Response Body
curl -X POST "http://localhost:9090/message_retry" \
-H "Content-Type: application/json" \
-d \
'[
{
"messageid": "0x123..."
}
]'
const response = await fetch('http://localhost:9090/message_retry', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify([
{
messageid: "0x123..."
}
])
});
import requests
response = requests.post('http://localhost:9090/message_retry', json=[
{
'messageid': '0x123...'
}
])
Was this page helpful?
⌘I