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 status field to determine your next action: process the order on A, retry or wait on P, and surface the message to your support team on R.

Field Reference

Field

Type

Description

id

string

Unique identifier for the installment tracker.

status

string

A = Approved | P = Pending | R = Rejected

message

string | null

null when the status is approved or pending. Contains the rejection reason when the status is R.