Payout Postback

This postback data will send to merchant for notification of the payout status.

Pending postback

{
  "fn": "PayoutTransactionUpdate",
  "merchant_id": "5f2a1e5d706dd94b04a8a064",
  "broker_id": "5e7316935712c0368d151ac2",
  "payout_code": "BHtSub8Qf",
  "address": "2NGYD7xVesd9to9hZw1kjU74HrENmWx9P4t",
  "amount": "0.00025",
  "language": "en",
  "status": "pending",
  "processed_date": "2023-03-15T08:44:57.484Z",
}

Complete postback

{
  "fn": "PayoutTransactionUpdate",
  "merchant_id": "63243a92a8ffba4ef8ca372c",
  "broker_id": "5e7316935712c0368d151ac2",
  "payout_code": "4MEue92vc",
  "address": "2NGYD7xVesd9to9hZw1kjU74HrENmWx9P4t",
  "amount": "0.00115872",
  "language": "en",
  "status": "complete",
  "txid": "cd32514ccdebaf9d1b3828e45b96d66ee245b24194ace1a21b574571ce1bbfa3",
  "processed_date": "2023-03-14T14:36:59.555Z",
  "complete_date": "2023-03-14T14:38:48.671Z",
}

Failed postback

{
  "fn": "PayoutTransactionUpdate",
  "merchant_id": "5f2a1e5d706dd94b04a8a064",
  "broker_id": "5e7316935712c0368d151ac2",
  "payout_code": "xO@zSb@7e",
  "address": "2NGYD7xVesd9to9hZw1kjU74HrENmWx9P4t",
  "amount": "0.000000001",
  "language": "en",
  "status": "failed",
  "failed_reason": "The data provided seems to be invalid., {\"0\":{\"amount\":[\"Amount should be valid decimal number\",\"Amount of blockchain bitcoin must have maximum of 8 decimal places\",\"Amount for destination address 2NGYD7xVesd9to9hZw1kjU74HrENmWx9P4t must be greater than 0.00000546\"]}}",
  "processed_date": "2023-03-14T15:33:39.792Z",
  "complete_date": "2023-03-14T15:33:39.792Z"
}

Our system expecting response return in JSON format as following otherwise you may receive multiple postback

{
  "status": "ok"
}

Last updated