Fetch the identity terms associated with the identity

GET /users/{user_id}/kyc/identities/{identity_id}/identity_terms

Fetch the identity terms associated with the identity or legal representative.

Path parameters

  • user_id string Required

    User id

  • identity_id string Required

    Identity or Legal representative id

Responses

  • 200

    The identity terms of the identity or legal representative

    Hide response attributes Show response attributes array[object]
    • custody_wallet_terms_acceptance boolean
    • custody_wallet_privacy_acceptance boolean
  • 404

    Resource not found.

GET /users/{user_id}/kyc/identities/{identity_id}/identity_terms
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/kyc/identities/{identity_id}/identity_terms
Response examples (200)
[
  {
    "custody_wallet_terms_acceptance": true,
    "custody_wallet_privacy_acceptance": true
  }
]
Response examples (200)
[
  {
    "custody_wallet_terms_acceptance": true,
    "custody_wallet_privacy_acceptance": true
  }
]