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.
FAQ: What are the transaction limits per user, and can they be adjusted?Transaction limits are set at both the partner level and the individual user level based on compliance requirements. Default limits apply to all new users, with higher limits available after additional verification. If you have a business need for adjusted limits for specific users or use cases, submit a request with the relevant details and justification to your partner manager.
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"
}
]
}
}
Updated about 2 months ago
What’s Next
Did this page help you?
