Getting Transaction Limits

Return the remaining limit based on varying transaction limits that are dynamically imposed on the Customer based on risk analysis and documents/data collected.

Sample API Request: GET

URL: https://caas-staging.coinme.com/services/transactionlimits
headers:
"Authorization":"asdfghj", //authorization token, required,
'User-Agent: partnerapi' //required
Request Body"
{
  "customerId": "654987321", //required
  "fiatCurrencyCode":"USD" //required
}

Sample API Response:

Successful Response:
{
  "data": 
  {
    "buyLimitAmount":"500.00", // in USD as the Fiat Currency requested is USD
    "sellLimitAmount":"500.00" // in USD as the Fiat Currency requested is USD
  },
  "errorResponse": null
}

Failure Response:
{
  "data": null,
  "errorResponse": {
    "httpStatus":"200",
    "timestamp":"2022-02-01T18:59:28.297Z",//UTC
    "path":"/services/transactionlimits GET",
    "errorData": [
      {
        "errorCode":"123-123-123-123", //The error code is just a sample showing the structure of the error code.
        "message":"Customer Id not found"
      }
    ]
  }
}