Webhook - Installment Tracker
The installment_tracker object tracks the issuer bank's decision on an installment request. It is returned inside the order.updated webhook event with one of three statuses: approved, rejected, or pending.
Approved Installment
"installment_tracker": {
"id": "70414",
"status": "A",
"message": null
}Rejected Installment
"installment_tracker": {
"id": "70321",
"status": "R",
"message": "Error Message"
}Pending Installment
"installment_tracker": {
"id": "70321",
"status": "P",
"message": null
}Check the
statusfield to determine your next action: process the order onA, retry or wait onP, and surface themessageto your support team onR.
Field Reference
Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the installment tracker. |
status | string |
|
message | string | null |
|
Updated 3 days ago