Skip to main content
POST
/
api
/
yativo-card
/
accept-terms
curl -X POST 'https://crypto-api.yativo.com/api/yativo-card/accept-terms' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json'
{
  "status": "success",
  "message": "Terms accepted successfully",
  "data": {
    "terms_accepted": true,
    "accepted_at": "2026-03-26T12:00:00Z",
    "terms_version": "2026-01"
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
This endpoint must be called after KYC is approved and before creating a card. Accepting terms is a one-time action per user.
curl -X POST 'https://crypto-api.yativo.com/api/yativo-card/accept-terms' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json'
{
  "status": "success",
  "message": "Terms accepted successfully",
  "data": {
    "terms_accepted": true,
    "accepted_at": "2026-03-26T12:00:00Z",
    "terms_version": "2026-01"
  }
}