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 the maximum number of cards each customer in the program can hold. Issuers cannot set per-customer limits above these ceilings.
The ID of the issuer program to update. Returned by GET /v1/card-issuer/status as data.id.
Bearer token: Bearer YOUR_ACCESS_TOKEN
Maximum virtual cards allowed per customer. Must be 0–5. Default: 1.
max_physical_per_customer
Maximum physical cards allowed per customer. Must be 0–5. Default: 1.
Maximum total active cards (virtual + physical combined) allowed per customer. Must be 0–5. Default: 2. Gnosis hard cap is 5.
At least one field must be provided. Fields not sent are left unchanged.
curl -X PATCH 'https://crypto-api.yativo.com/api/v1/card-issuer/admin/69ecc05a4fc8c9c148ed1a9a/card-limits' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"max_virtual_per_customer": 3,
"max_physical_per_customer": 1,
"max_total_per_customer": 4
}'
200 OK
400 Invalid limit
400 No changes
404 Not found
{
"success" : true ,
"message" : "Card limits updated" ,
"data" : {
"program_id" : "69ecc05a4fc8c9c148ed1a9a" ,
"card_limits" : {
"max_virtual_per_customer" : 3 ,
"max_physical_per_customer" : 1 ,
"max_total_per_customer" : 4
}
}
}