Get Kyc URL
Get the kyc URL
Get kyc url which will redirect to Remitquickly KYC verification.
POST https://api.reqmitquickly.com/onramp/api/v2/whiteLabel/kyc/url
Request Body
Name
Type
Description
customerId
String
Unique User Id received from /KycUrl (This customerId required to get the kycUrl if already created the user)
String
Email address of the customer
phoneNumber*
String
Phone number (with country code) of the customer
clientCustomerId*
String
Unique identifier of the customer on Client side
type*
String
Indicates whether this is a business or individual customer (INDIVIDUAL/BUSINESS)
kycRedirectUrl
String
Client URL to return to once the KYC process done. Example: https://www.clientUrl.com
closeAfterLogin
Boolean
True/False, to close the UI just after login.
{
"status": 1,
"code": 200,
"data": {
"kycUrl": "---url---",
"clientCustomerId": "---UUID---",
"customerId": "---customerId---"
}
}{
"status": 0,
"code": 400,
"error": "Missing required parameter(s): phoneNumber, clientCustomerId, type"
}{
"status": 0,
"code": 500,
"error": "Unable to send kycUrl at the moment. Please try again later"
}{
"status": 0,
"code": 400,
"error": "phoneNumber +9186320525792 already linked to customerId 7wCfJHPZX4_1022 and clientCustomerId Tbx92Mn "
}Last updated