Skip to main content

Account Rules

GET/account-rulesOpen in the API playground →
Info

Retrieve the defined transaction and balance limits for each KYC level.

Request

Authorizationstringheaderrequired

Bearer olive_live_xxx


Response

rulesarray

List of tier rules


Examples

Request
cURL
curl -X GET "https://demo.api.vultlocal.com/api/v1/compliance/account-rules" \
-H "Authorization: Bearer olive_live_xxx"
Response
200 OK
{
"rules": [
{
"kyc_level": 1,
"max_balance": 5000000,
"daily_limit": 1000000,
"single_limit": 500000,
"description": "Standard User"
},
{
"kyc_level": 2,
"max_balance": 20000000,
"daily_limit": 5000000,
"single_limit": 2000000,
"description": "Verified User"
}
]
}