KYC Submit Detail
KYC verification
Allows users to submit a Know Your Customer (KYC) detail(s).
Know Your Customer (KYC) submission.
POST
https://api.remitquickly.com/onramp/api/v2/whiteLabel/kyc/submitData
Request Body
Name
Type
Description
details*
JSON
json containing keys like firstName.
incomeTaxNumber
String
unique alphanumeric identifier issued by the Income Tax Department of the country
customerId*
String
Unique id received from /kyc/url
fiatType*
Integer
id associated with the particular country
identityNumber*
String
unique ID issued by the relevant authorities in the user's country
address
JSON
json containing keys like addressLine1
type
Integer
type based on Identity type such as 1, 2 or 3 (by default = 1)
{
"status": 1,
"code": 200,
"data": 1
}
Sample Request
{
"identityNumber": 92372910382,
"fiatType": 12,
"customerId": "8XUl_16",
"details": JSON.stringify({
"firstName": "David",
"firstSurname": "",
"secondSurname": "Davreign",
"dob": "1999-09-14",
"sourceOfFunds": "SALARY",
"sex": "male"
}),
"address": JSON.stringify({
"addressLine1": "Sector 18",
"city": "Dresden",
"country": "DE",
"postalCode": "01067"
})
}
Last updated