- Retrieve via SDK - Check a user’s current limit using the GetBalance method
- Manage via REST API - Increase or decrease withdrawal limits through dedicated API endpoints
Retrieving Withdrawal Limit via SDK
The easiest way to get a user’s withdrawal limit is through theGetBalance SDK method. The withdrawal limit is included in the callback response.
Implementation
CallGetBalance to retrieve the user’s current withdrawal limit:
Managing Withdrawal Limits via REST API
You can use these endpoints to increase or decrease a user’s withdrawal limit. Admin JWT authentication is required.Increase Withdrawal Limit
Raise a user’s withdrawal limit with the REST API
Decrease Withdrawal Limit
Lower a user’s withdrawal limit with the REST API
With these two methods available, you can choose the one that best fits your application use the SDK for client-side integration or the REST API for server-side management.