Users

Get limit for the user

This endpoint gets the monthly limit for the user including the monthly available limit.

get/v2/users/{id}/limit

Path parameters

idstring required

Response

getUserLimit 200 response

Example response

{
  "monthly_limit": {
    "amount": 700,
    "currency": "USD"
  },
  "monthly_available": {
    "amount": 700,
    "currency": "USD"
  }
}

Changes