Skip to main content
PATCH
/
v1
/
yativo-card
/
admin
/
{yativoCardId}
/
card-limits
curl -X PATCH 'https://crypto-api.yativo.com/api/v1/yativo-card/admin/yativo_card_customer_8f9a_abc_1769031332068/card-limits' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "max_virtual": 3,
    "max_physical": 2,
    "max_total": 5
  }'
{
  "success": true,
  "message": "Account card limits updated",
  "data": {
    "yativo_card_id": "yativo_card_customer_8f9a...abc_1769031332068",
    "card_limits": {
      "max_virtual": 3,
      "max_physical": 2,
      "max_total": 5,
      "set_by": "admin_user_id",
      "set_at": "2026-05-05T12:00:00.000Z"
    }
  }
}

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.

This is an admin-only endpoint. It sets card limits directly on a specific account, bypassing the program ceiling. Limits can be set up to the Gnosis hard cap of 5 active cards.
yativoCardId
string
required
The yativo_card_id of the account (user or customer card) to update.
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
max_virtual
integer
Maximum virtual cards for this account. Must be 0–5.
max_physical
integer
Maximum physical cards for this account. Must be 0–5.
max_total
integer
Maximum total active cards (virtual + physical combined) for this account. Must be 0–5.
At least one field must be provided.
curl -X PATCH 'https://crypto-api.yativo.com/api/v1/yativo-card/admin/yativo_card_customer_8f9a_abc_1769031332068/card-limits' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "max_virtual": 3,
    "max_physical": 2,
    "max_total": 5
  }'
{
  "success": true,
  "message": "Account card limits updated",
  "data": {
    "yativo_card_id": "yativo_card_customer_8f9a...abc_1769031332068",
    "card_limits": {
      "max_virtual": 3,
      "max_physical": 2,
      "max_total": 5,
      "set_by": "admin_user_id",
      "set_at": "2026-05-05T12:00:00.000Z"
    }
  }
}