# 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. Endpoint: POST /v2/users/{id}/limit Version: 1.0 Security: OAuth2 ## Path parameters: - `id` (string, required) ## Header parameters: - `Idempotency-Key` (string,null) ## Request fields (application/json): - `monthly_limit` (object,null) Money fields can be signed or unsigned. Fields are signed (an unsigned value will be interpreted as positive). The amount of money will be represented in the smallest denomination of the currency indicated. For example, USD 7.00 will be represented in cents with an amount of 700. - `monthly_limit.amount` (integer, required) The amount of money, in the smallest denomination of the currency indicated by currency. For example, when currency is USD, amount is in cents. Example: 700 - `monthly_limit.currency` (string,null) The type of currency, in ISO 4217 format. Example: "USD" ## Response 200 fields (application/json): - `monthly_limit` (object,null) Money fields can be signed or unsigned. Fields are signed (an unsigned value will be interpreted as positive). The amount of money will be represented in the smallest denomination of the currency indicated. For example, USD 7.00 will be represented in cents with an amount of 700. - `monthly_limit.amount` (integer, required) The amount of money, in the smallest denomination of the currency indicated by currency. For example, when currency is USD, amount is in cents. Example: 700 - `monthly_limit.currency` (string,null) The type of currency, in ISO 4217 format. Example: "USD" - `monthly_available` (object,null) Money fields can be signed or unsigned. Fields are signed (an unsigned value will be interpreted as positive). The amount of money will be represented in the smallest denomination of the currency indicated. For example, USD 7.00 will be represented in cents with an amount of 700.