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
}
}
Yativo Card (Own Account)
Accept Terms
Accept the Yativo Card terms and conditions to proceed with card issuance
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
}
}
string
required
Bearer token:
Bearer YOUR_ACCESS_TOKENThis 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’syativo_card_idas the path parameter — it is idempotent and safe to call even if terms were already accepted upstream.
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
}
}

