KYC File Submit
KYB verification
Allows users to submit a Know Your Customer (KYC) file(s).
Know Your Customer (KYC) file submission.
POST
https://api.remitquickly.com/onramp/api/v2/whiteLabel/kyc/submitFiles
Request Body
Name
Type
Description
customerId*
String
unique ID for customer returned from /kyc/url.
type
Integer
type based on ID type such as 1, 2 or 3 (by default = 1)
urls*
JSON
json containing keys as fileName with extension(idFront1.jpg) and values as url to download that file.
fiatType*
Integer
id associated with the particular country
Send all documents and parameters in the form-data format.
{
"status": 1,
"code": 200,
"data": 1
}
{
"fiatType": 12,
"customerId": "8X2m7_116",
"type":3,
"urls": JSON.stringify({
"passportFront.jpg": "https://bucket.s3.region.amazonaws.com/objectKey?X-Amz-Algorithm=signature",
"passportBack.jpg": "https://bucket.s3.region.amazonaws.com/objectKey?X-Amz-Algorithm=signature",
"selfie.jpg": "https://bucket.s3.region.amazonaws.com/objectKey?X-Amz-Algorithm=signature"
})
}
Last updated