v1

latestOpenAPI 3.1.02026-07-26490301.4 KB

Get IPN for transaction ID

get/transaction/{id}/ipn

Path parameters

idstring required

Transaction ID

Response

OK

urlstring url

URL where the IPN was sent

requeststring

Request body of the IPN

responsestring

Response returned by the merchant's endpoint

orderIdstring

Order ID of the payment associated with the IPN

transactionIdstring

Transaction ID of the payment associated with the IPN

execTimestring

Unix timestamp of the IPN delivery attempt

httpCodestring

HTTP status code

errorstring nullable

Error message, if any (e.g., timeout)

attemptNumberinteger

Number of the delivery attempt

Example response

[
  {
    "url": "https://merchant.example.com/ipn",
    "orderId": "order_abc123",
    "transactionId": "txn_xyz789",
    "execTime": "1637063718",
    "httpCode": "200",
    "error": "timeout",
    "attemptNumber": 2
  }
]