Skip to main content
POST
/
v1
/
yativo-card
/
{yativoCardId}
/
terms
curl -X POST 'https://crypto-api.yativo.com/api/v1/yativo-card/yativo_card_0xAbCd1234EfGh5678IjKl9012_1769031332068/terms' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json'
{
  "success": true,
  "message": "Terms accepted successfully",
  "data": {
    "yativo_card_id": "yativo_card_0xAbCd1234EfGh5678IjKl9012_1769031332068",
    "terms_accepted": true,
    "version": "TOS_GENERAL_VERSION_1",
    "accepted_at": "2026-04-25T12:00:00.000Z",
    "legal_acceptances": {
      "terms_and_conditions": true,
      "privacy_policy": true,
      "age_confirmation": true,
      "issuer_disclosure": true,
      "fees_disclosure": true,
      "confirmed_at": "2026-04-25T12:00:00.000Z",
      "policy_version": "2026-04",
      "disclosure_version": "2026-04"
    },
    "legal_acceptances_complete": true
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
This endpoint works for both own-account users and B2B customer cards.
  • Own-account users (POST /v1/yativo-card/onboard): call this after KYC is approved and before creating a card.
  • B2B Card Issuer customers: terms are auto-accepted by the platform when KYC is first approved. However, the auto-accept can fail silently. If card creation returns LEGAL_ACCEPTANCE_REQUIRED, call this endpoint using the customer’s yativo_card_id as the path parameter — it is idempotent and safe to call even if terms were already accepted upstream.
Accepting terms is a one-time operation per card account.
curl -X POST 'https://crypto-api.yativo.com/api/v1/yativo-card/yativo_card_0xAbCd1234EfGh5678IjKl9012_1769031332068/terms' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json'
{
  "success": true,
  "message": "Terms accepted successfully",
  "data": {
    "yativo_card_id": "yativo_card_0xAbCd1234EfGh5678IjKl9012_1769031332068",
    "terms_accepted": true,
    "version": "TOS_GENERAL_VERSION_1",
    "accepted_at": "2026-04-25T12:00:00.000Z",
    "legal_acceptances": {
      "terms_and_conditions": true,
      "privacy_policy": true,
      "age_confirmation": true,
      "issuer_disclosure": true,
      "fees_disclosure": true,
      "confirmed_at": "2026-04-25T12:00:00.000Z",
      "policy_version": "2026-04",
      "disclosure_version": "2026-04"
    },
    "legal_acceptances_complete": true
  }
}