/b2b/user/card-limits-unverified

Get total and remaining card limits for unverified user

Query Parameters
  • type
    enum
    const:  
    buy
    required

    Type of convert. Sell is not available for unverified user

    values
    • buy
Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/b2b/user/card-limits-unverified
curl 'https://sandbox-api.mrcr.io/v1.6/b2b/user/card-limits-unverified?type=buy' \
  --header 'B2B-Bearer-Token: YOUR_SECRET_TOKEN'
{
  "status": 200,
  "data": {
    "currenciesLimits": {
      "EUR": {
        "remain": "393.23",
        "total": "699.00"
      }
    }
  }
}