Payment Payer Verification
This API is used for Merchant/Partner to verify payer’s KYC information in their system with Binance’s before Create Order.
*This API is only available for whitelisted merchants. If you need any help, you can contact us: [email protected]
EndPoint
POST /binancepay/openapi/order/payer/verification
Request Parameters
Attributes | Type | Required | Limitation | Description |
---|---|---|---|---|
binanceId | string | Y | payer's binance id | |
payerType | string | Y | Enum value | payer type INDIVIDUAL: individual payer. CORPORATE: corporate payer. |
information | List | N | elements structure in list: Info | information to be verified |
Info
Attributes | Type | Required | Limitation | Description |
---|---|---|---|---|
category | string | Y | Enum value | For Individual: FIRST_NAME LAST_NAME DATE_OF_BIRTH NATIONALITY (2-letter country code)-optional DOCUMENT_TYPE-optional DOCUMENT_NUMBER-optional For corporate: COMPANY_NAME REGISTRATION_NUMBER REGISTRATION_COUNTRY (2-letter country code) |
value | string | Y | max length 1024 | value of information For DOCUMENT_TYPE, available values are: ID_CARD/PASSPORT/DRIVING_LICENSE/VISA/CPF/OTHER/BVN_NUMBER/NIN_NUMBER/PAN/BVN_NIN_NUMBER/SMILEID_NATIONAL_ID/ABN/ACN/UA_DIA For DATE_OF_BIRTH format: YYYY-MM-DD For NATIONALITY and REGISTRATION_COUNTRY value is based on 2-letter country code |
Sample Request Body
{
"binanceId":"354205155",
"payerType":"INDIVIDUAL",
"information":[
{
"category":"FIRST_NAME",
"value":"binance",
},
{
"category":"LAST_NAME",
"value":"pay",
},
{
"category":"DATE_OF_BIRTH",
"value":"1980-01-01",
}
]
}
Response Parameters
Attributes | Type | Required | Limitation | Description |
---|---|---|---|---|
status | string | Y | "SUCCESS" or "FAIL" | status of the API request |
code | string | Y | - | request result code, refer to |
data | Boolean | N | - | true means matched, false means not matched |
errorMessage | string | N | maximum length 256 |