Postbacks

Postbacks notify your system when a Factoring Decline v1 payment or refund result becomes available.

Configure your URL

Open:

https://factoring.ltvx.dev/api-settings

In the Postbacks tab:

SettingDescription
Send postbacksEnable this to send Factoring Decline v1 events.
Postback URLHTTPS endpoint on your server that accepts postback requests.

Example:

https://merchant.example.com/webhooks/factoring-decline

Delivery format

ItemValue
MethodPOST
BodyJSON
Content typeapplication/json
Timeout30 seconds
Successful responseHTTP 200

Only HTTP 200 is treated as successful. Any non-200 response, timeout, or network error is treated as a failed delivery.

Payload

{
  "clickID": "click-id-22132",
  "status": "success",
  "orderID": "01950fae-7c1f-7290-9d6c-04fa4ff5c74a",
  "transactionID": "01950fb2-1b85-71d8-9b62-60f4cbdbec11",
  "amount": "7.00",
  "currency": "USD",
  "errorMessage": ""
}

Payload fields

FieldTypeDescription
clickIDstringThe value originally sent as tracking2.
statusstringsuccess, failed, processing, or refunded.
orderIDstringOrder identifier.
transactionIDstringTransaction identifier.
amountstringAmount formatted with two decimal places.
currencystringISO 4217 currency code.
errorMessagestringFailure reason when status is failed; otherwise empty.

Retry schedule

RetryDelay
160 seconds
2300 seconds
3900 seconds
41800 seconds

A successfully delivered postback is not sent again for the same transaction and postback type.