Skip to content

P2P Order Approval API

If you approve an order, it will proceed through the standard flow. If you reject it, the order will be automatically refunded.

Approve or reject an order

POST /api/v1/p2p/order/{latam_id}
Host: binance.latamgateway.com
Content-Type: "application/json"
ACCOUNT_TOKEN: "<token>"

{
  "approve": true
}

Params descriptions

Field Description Value Type Requirement
approve "true" to approve or "false" to reject. bool Required

For approval requests, a successful request HTTP 200 status code, the response will include the following parameters:

{
    "message": "Request accepted. Binance will be notified about the order payment."
}

For rejection requests, a successful request HTTP 200 status code, the response will include the following parameters:

{
    "message": "Request accepted. The order refund will be requested."
}

Business errors are returned with an HTTP 400 status code.

{
    "message": "Request denied. Please contact our support team for assistance."
}

When the order is invalid, the response will return an HTTP 400 status code along with the following parameters:

{
    "message": "Order invalid. Please check the order ID and try again."
}

When the order is not found, the response will return an HTTP 404 status code along with the following parameters:

{
    "message": "Order not found. Please check the order ID and try again."
}