Postbacks Settings

How Factoring Decline v1 sends payment and refund results to your system.

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

Configure your URL

For an approved website, open the merchant portal and click API Settings for that website:

https://factoring.ltvx.dev/factoring/websites

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

{
  "event_id": "019eb47d-1ac1-72a8-9d90-8ff08b9e1a23",
  "clickID": "click-id-22132",
  "website_id": "019e72ef-a0ed-730c-8307-9786f1a602b6",
  "status": "success",
  "mode": "live",
  "orderID": "019ea3ec-51f9-73bf-9f21-a6d34755f74c",
  "transactionID": "019ea4a3-786f-7221-a5ca-c35ab4902fff",
  "scheduled_at": null,
  "amount": "6.99",
  "currency": "USD",
  "errorMessage": null
}

Payload fields

FieldTypeDescription
event_idstringUnique identifier for this postback event. Use it for idempotency.
clickIDstringThe value originally sent as tracking2.
website_idstringWebsite ID that generated the event.
statusstringsuccess, failed, processing, or refunded.
modestringlive or test.
orderIDstringOrder identifier.
transactionIDstring/nullTransaction identifier, or null when it is not available.
scheduled_atstring/nullScheduled processing time, or null when not applicable.
amountstringAmount formatted with two decimal places.
currencystringISO 4217 currency code.
errorMessagestring/nullFailure reason when status is failed; otherwise null.

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.


Did this page help you?