POST /users/{user_id}/kyc/identities/{identity_id}/kyc_verification
Path parameters
-
User id
-
Identity or Legal representative id
Body Required
The Kyc Verification information
-
date string(date)
-
method_type string
Values are
video_ident
,id_copy
,auto_ident
,in_person
, orno_verification
.
POST /users/{user_id}/kyc/identities/{identity_id}/kyc_verification
curl \
-X POST https://client-subdomain.bitbond.net/api/v1/users/{user_id}/kyc/identities/{identity_id}/kyc_verification \
-H "Content-Type: application/json" \
-d '{"date":"2023-05-04","method_type":"video_ident"}'
Request example
{
"date": "2023-05-04",
"method_type": "video_ident"
}
Request examples
{
"date": "2024-05-04",
"method_type": "video_ident"
}
Response examples (201)
{
"id": "string",
"date": "2023-05-04",
"method_type": "video_ident",
"created_at": "string"
}
Response examples (201)
{
"id": "string",
"date": "2024-05-04",
"method_type": "video_ident",
"created_at": "string"
}