Get Kyc URL

Get the kyc URL

Please send the customerId(received when created the user for the first time) to get the kycUrl link.

phoneNumber should be in this format:

+{countryCode}-{actualPhoneNumber}

  • The phone number string must begin with a plus sign (+).

  • The countryCode and actualPhoneNumber should be separated by a hyphen (-) symbol.

  • There should be no spaces within the phone number string.

Get kyc url which will redirect to coinMena KYC verification.

POST https://integration.coinmena.com/onramp-bank/api/v1/kyc/url

Request Body

NameTypeDescription

customerId

String

Unique User Id received from /KycUrl (This customerId required to get the kycUrl if already created the user)

email

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---"
    }
}

Last updated