curl -X PUT 'https://crypto-api.yativo.com/api/v1/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/wallet/limits' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"daily_limit": 3000
}'
{
"success": true,
"data": {
"currency": "USDCe",
"limits": {
"daily": {"limit": 7999, "used": 0, "remaining": 7999},
"monthly": {},
"per_transaction": {}
}
}
}
Yativo Card (Own Account)
Set Spending Limits
Update the daily spending limit for the card wallet
PUT
/
v1
/
yativo-card
/
{yativoCardId}
/
wallet
/
limits
curl -X PUT 'https://crypto-api.yativo.com/api/v1/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/wallet/limits' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"daily_limit": 3000
}'
{
"success": true,
"data": {
"currency": "USDCe",
"limits": {
"daily": {"limit": 7999, "used": 0, "remaining": 7999},
"monthly": {},
"per_transaction": {}
}
}
}
string
required
Bearer token:
Bearer YOUR_ACCESS_TOKENstring
required
The Yativo Card account ID.
number
required
The new daily spending limit in USD.
curl -X PUT 'https://crypto-api.yativo.com/api/v1/yativo-card/yvc_01HX9KZMB3F7VNQP8R2WDGT4EI/wallet/limits' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"daily_limit": 3000
}'
{
"success": true,
"data": {
"currency": "USDCe",
"limits": {
"daily": {"limit": 7999, "used": 0, "remaining": 7999},
"monthly": {},
"per_transaction": {}
}
}
}

