Skip to main content
WEBHOOK
recovery_action
{
  "id": "req_2uqkAo1bwllmzrgV2qtGv48DtGI",
  "type": "recovery_action",
  "created": "2023-01-18T09:00:00Z",
  "data": {
    "invoiceId": "inv_12345678",
    "subscriptionId": "sub_12345678",
    "actionSuggestion": "ACTION_SUGGESTION_RETRY",
    "idealRetryTime": "2023-01-18T09:30:00Z"
  }
}
{
  "success": true,
  "message": "Event processed successfully"
}

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

Event sent when Slicker determines a payment should be retried

id
string
required

Unique identifier for this webhook event

Example:

"req_2uqkAo1bwllmzrgV2qtGv48DtGI"

type
enum<string>
required

Event type identifier

Available options:
recovery_action
Example:

"recovery_action"

created
string<date-time>
required

Timestamp when this webhook event was created

Example:

"2023-01-18T09:00:00Z"

data
object
required

Recovery action event data

Response

Event received and processed successfully

success
boolean

Indicates if the event was successfully received and processed

Example:

true

message
string

Additional information about the response

Example:

"Event processed successfully"

I