POST /users/{user_id}/kyc/identities/{identity_id}/kyc_verification

POST /users/{user_id}/kyc/identities/{identity_id}/kyc_verification

Path parameters

application/json

Body Required

The Kyc Verification information

  • date string(date)
  • Values are video_ident, id_copy, auto_ident, in_person, or no_verification.

Responses

  • 201

    Kyc Verification created and returned

    Hide response attributes Show response attributes object
  • 401

    Authorization information is missing or invalid.

  • 422

    Request body has errors or invalid.

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"
}
Response examples (201)
{
  "id": "string",
  "date": "2023-05-04",
  "method_type": "video_ident",
  "created_at": "string"
}