POST
/
recovery_action
curl --request POST \
  --url https://api.your-company.com/slicker-webhook/recovery_action \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "requestId": "req_2uqkAo1bwllmzrgV2qtGv48DtGI",
  "invoiceId": "inv_12345678",
  "subscriptionId": "sub_12345678",
  "actionSuggestion": "ACTION_SUGGESTION_RETRY",
  "idealRetryTime": "2023-01-18T09:30:00Z"
}'
{
  "success": true,
  "message": "Retry scheduled"
}

Authorizations

Authorization
string
header
required

API key authentication using a Bearer token in the Authorization header. Example: Authorization: Bearer YOUR_API_KEY

Body

application/json

Response

200
application/json

Retry instructions received successfully

The response is of type object.