Retry a webhook delivery
POST
/webhooks/{id}/deliveries/{did}/retry
Authentication
Bearer Token API Key (header: X-API-Key)
Path Parameters
id
string
required
path
did
string
required
path
Responses
200
Retry dispatched
No response body
curl -X POST 'https://platform-api.anyspend.com/api/v1/webhooks/string/deliveries/string/retry' \
-H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://platform-api.anyspend.com/api/v1/webhooks/string/deliveries/string/retry', {
method: 'POST',
headers: {
"Authorization": "Bearer YOUR_API_TOKEN"
}
});
const data = await response.json();
console.log(data);
import requests
headers = {
'Authorization': 'Bearer YOUR_API_TOKEN'
}
response = requests.post('https://platform-api.anyspend.com/api/v1/webhooks/string/deliveries/string/retry', headers=headers)
print(response.json())
POST
/webhooks/{id}/deliveries/{did}/retry