Submit KYC documents
Submits KYC documents for the authenticated user
Body
required
application/json
JSON Body
- Type: stringcountry
_code requiredUser country code
- Type: array object[]documentsrequired
- enumfeatureconst:cryptorequired
KYC feature level
values- crypto
Responses
- application/json
- application/json
- application/json
- application/json
- application/json
- application/json
Request Example for post/sdk-partner/kyc/docs
curl https://sandbox-api.mrcr.io/v1.6/sdk-partner/kyc/docs \
--request POST \
--header 'Content-Type: application/json' \
--header 'Sdk-User-Token: YOUR_SECRET_TOKEN' \
--data '{
"feature": "crypto",
"country_code": "de",
"documents": [
{
"type": "id_card",
"files": {
"side-1.jpg": "base64filecontent",
"side-2.jpg": "base64filecontent",
"face.jpg": "base64filecontent"
}
}
]
}'
{
"status": 202,
"data": {
"kyc_access_token": "string",
"applicant_id": "string"
}
}