Get Limits
Read on details on transaction limits specific to wallet accounts
GET /users/{userId}/limits
GET /users/{userId}/limitsField
Required
Type
Description
curl --location --request GET '{{url}}/users/{userId}/limits' \
--header 'X-Client-Id:{{client_id}} ' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'[
{
"country": "US",
"remaining_limit": {
"annual_limit": 10000,
"daily_limit": 200,
"monthly_limit": 5000
},
"type": "EXTERNAL",
"current_tier" : 1,
"user_id": UUID
},
{
"remaining_limit": {
"annual_limit": 6401.00,
"daily_limit": 1790.00,
"monthly_limit": 2310.00,
"wallet_hold_limit": 2000.00
},
"type": "LOAD",
"current_tier" : 1,
"user_id": UUID
},
{
"remaining_limit": {
"annual_limit": 9860.80,
"daily_limit": 22.00,
"monthly_limit": 4960.80
},
"type": "UNLOAD",
"current_tier" : 1,
"user_id": UUID
},
{
"remaining_limit": {
"annual_limit": 9876.60,
"daily_limit": 200,
"monthly_limit": 4906.60
},
"type": "TRANSFER",
"current_tier" : 1,
"user_id": UUID
}
]Last updated