curl --request PUT \
--url https://api.royalti.io/product/{id}/deliveries/{deliveryId}/retry \
--header 'Authorization: Bearer <token>'{
"status": "success",
"message": "Delivery retry initiated",
"data": {
"productId": "<string>",
"deliveryId": "<string>",
"provider": "<string>",
"status": "<string>",
"attemptCount": 123,
"maxAttempts": 123
}
}/product//deliveries//retry
curl --request PUT \
--url https://api.royalti.io/product/{id}/deliveries/{deliveryId}/retry \
--header 'Authorization: Bearer <token>'{
"status": "success",
"message": "Delivery retry initiated",
"data": {
"productId": "<string>",
"deliveryId": "<string>",
"provider": "<string>",
"status": "<string>",
"attemptCount": 123,
"maxAttempts": 123
}
}PUT
const response = await fetch('https://api.royalti.io/product/example-id/deliveries/example-id/retry', {
method: 'PUT',
headers: {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({})
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"