Skip to main content
POST
/
v1
/
yativo-card
/
{yativoCardId}
/
iban
/
activate
curl -X POST 'https://crypto-api.yativo.com/api/v1/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/iban/activate' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "kyc_method": "platform_kyc"
  }'
{
  "status": "success",
  "message": "IBAN activation initiated",
  "data": {
    "yativo_card_id": "yvc_01HX9KZMB3F7VNQP8R2WDGT4EI",
    "iban_status": "pending_kyc",
    "kyc_method": "platform_kyc",
    "initiated_at": "2026-03-26T12:00:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.yativo.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
yativoCardId
string
required
The Yativo Card account ID.
kyc_method
string
required
The KYC verification method to use. One of:
  • platform_kyc — KYC handled by the platform
  • user_kyc — User completes KYC directly via the hosted verification flow
  • direct_docs — KYC via direct document submission
kyc_token
string
A KYC access token, required when kyc_method is user_kyc.
curl -X POST 'https://crypto-api.yativo.com/api/v1/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/iban/activate' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "kyc_method": "platform_kyc"
  }'
{
  "status": "success",
  "message": "IBAN activation initiated",
  "data": {
    "yativo_card_id": "yvc_01HX9KZMB3F7VNQP8R2WDGT4EI",
    "iban_status": "pending_kyc",
    "kyc_method": "platform_kyc",
    "initiated_at": "2026-03-26T12:00:00Z"
  }
}