Users
Set limit for the user
This endpoint sets the monthly limit for a user. The limit amount must be non-negative. To unset the monthly limit of the user, just set monthly_limit to null.
post/v2/users/{id}/limit
Path parameters
idstring required
Headers
Idempotency-Keystring nullable
Request body
Example request
{
"monthly_limit": {
"amount": 700,
"currency": "USD"
}
}Response
setUserLimit 200 response
Example response
{
"monthly_limit": {
"amount": 700,
"currency": "USD"
},
"monthly_available": {
"amount": 700,
"currency": "USD"
}
}