Skip to content

Order details

Check orders status and more details.

You can check the transaction status at any time:

GET /v1/orders/{latam_id}
Host: query-binance.sulpayments.ch
Content-Type: application/json
ACCOUNT_TOKEN: "<token>"

For MXN Spei orders, the response will be:

{
  "latam_id": "1ax234b5-67cd-8aab-118a-0d629796d28d",
  "code": "01234567899910215680042611",
  "customer_name": "Customer’s full name",
  "customer_email": "Customer Email",
  "original_amount": "100.0",
  "fee": "1.0",
  "tax": "1.0",
  "additional_value": 0.0,
  "final_value": 100.0,
  "status": "paid",
  "final": true,
  "created_at": "2024-04-26T16:30:27-03:00",
  "paid_at": "2024-04-26T17:26:13-03:00",
  "chargeback_at": null,
  "reason": "",
  "payment_method": "mxn_spei",
  "money_laundry_prevention": false,
  "provider": "spei",
  "ocbs": false,
  "payer_info": {
    "name": "Payer's Name",
    "bank_code": "90646",
    "bank_account": "010101010101010101"
  },
  "payment": {
    "deep_link": "https://admin.gamecash.mx/receipt-payment/ord_WVgOh7KPiptaANBCxeGZr",
    "qrcode_link": "https://checkout-platform.sulpayments.ch/payment/order/6387b9bf-0ec3-43c3-8798-4bd495d12290",
    "universal_link": "https://admin.gamecash.mx/receipt-payment/ord_WVgOh7KPiptaANBCxeGZr"
  }
}

Response params descriptions

Param Description Value Type
latam_id Order ID into the Sulpayment’s system String
code Order reference in your system String
customer_name Customer's full name String
customer_email Customer's email address String
original_amount Total order value Number (decimal)
fee Latam's fee in the order in BRL Number (decimal)
tax Latam's tax in the order in BRL Number (decimal)
additional_value Additional fee charged to the customer Number (decimal)
final_value Final value of the order after fees Number (decimal)
status Order current status String
final Boolean to indicate if the order status is final Boolean
created_at Order’s creation Timestamp Timestamp
paid_at Order’s paid Timestamp Timestamp
chargeback_at Order’s chargeback Timestamp (Credit Card only) Timestamp
reason Reason in case of failing order String
payment_method Payment method String
provider Payment provider String
money_laundry_prevention Indicates if money laundering prevention measures were applied Boolean
ocbs Binance’s internal control Boolean
payer_info.name Payer's name String
payer_info.bank_code Payer’s bank identifier String
payer_info.bank_account Payer’s CLABE (bank account number) String
payment JSON containing payment details. Each payment method has its own structure Object
  • When checking the status of orders, please note that paid orders may still be modified unless the “Final” field is set to true.