Fetch the status of the KYC flow of a personal investor

GET /users/{user_id}/kyc

Fetch the status of the KYC flow of a personal investor or a business investor.

Path parameters

  • user_id string Required

    User id

Responses

  • 200

    The status of the KYC flow of a personal investor or a business investor

    Hide response attributes Show response attributes object
    • address boolean
    • identity boolean
    • bank_account boolean
    • video_identification boolean
    • email boolean
    • business boolean
    • documents boolean
GET /users/{user_id}/kyc
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/kyc
Response examples (200)
{
  "identity": true,
  "address": true,
  "bank_account": true,
  "video_identification": true,
  "email": true,
  "business": true,
  "legal_reps": true,
  "documents": true
}
Response examples (200)
{
  "address": true,
  "identity": true,
  "bank_account": true,
  "video_identification": true,
  "email": true,
  "business": true,
  "legal_reps": true,
  "documents": true
}