Create an identity term for the identity

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

Create an identity term for the identity or legal representative.

Path parameters

application/json

Body Required

Identity term information

Responses

POST /users/{user_id}/kyc/identities/{identity_id}/identity_terms
curl \
 -X POST https://client-subdomain.bitbond.net/api/v1/users/{user_id}/kyc/identities/{identity_id}/identity_terms \
 -H "Content-Type: application/json" \
 -d '{"terms":{"custody_wallet_terms_acceptance":true,"custody_wallet_privacy_acceptance":true}}'
Request example
{
  "terms": {
    "custody_wallet_terms_acceptance": true,
    "custody_wallet_privacy_acceptance": true
  }
}
Response examples (201)
{
  "custody_wallet_terms_acceptance": true,
  "custody_wallet_privacy_acceptance": true
}