Validating recipient's Binance ID
POST /api/public/v1/payouts/binance_receiver/validate
This endpoint validates the recipient's Binance ID.
Make sure to supply application/json in the Content-Type header.
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <api_key>
Request Body
Name
Type
Required
Description
receiver_id
string
Yes
Recipient's Binance ID, e.g. 474748434. It must always be numeric and can range from 8 to 10 digits. As the number of Binance users increases, it may grow to 11 or 12 digits in the future.
Response
{
"data": {},
"status": "ok",
"jsonapi": {
"version": "1.0"
}
}
// The Binance ID format is valid{
"errors": [
{
"status": 422,
"title": "Invalid receiver",
"code": "binance_pay_invalid_receiver",
"detail": "The provided Binance ID is not valid."
}
]
// The Binance ID format is not validLast updated