Retry Delivery
POST
/admin/automations/{id}/actions/{actionId}/deliveries/retry
const url = 'http://localhost:9000/admin/automations/example/actions/example/deliveries/retry';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"delivery_ids":["example"],"status":"example","since":"example","until":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:9000/admin/automations/example/actions/example/deliveries/retry \ --header 'Content-Type: application/json' \ --data '{ "delivery_ids": [ "example" ], "status": "example", "since": "example", "until": "example" }'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
actionId
required
string
Request Body required
Section titled “Request Body required ” Media type application/json
object
delivery_ids
Array<string>
status
string
since
string
until
string
Example generated
{ "delivery_ids": [ "example" ], "status": "example", "since": "example", "until": "example"}Responses
Section titled “ Responses ”OK
Media type application/json
object
Example generated
{}