Get the current user limit and monthlyUsed limit for onramp and offramp.
Last updated 5 months ago
This endpoint will return the current onramp limit, offramp limit, monthly limit used by user for onramp and offramp, and isNextKycVerificationRequired (whether the more kyc verification step(s) is/are required or not).
POST https://integration.coinmena.com/onramp-bank/api/v1/user/limit
POST
https://integration.coinmena.com/onramp-bank/api/v1/user/limit
customerId*
String
Unique id received from /kyc/url
fiatType*
Integer
{ "status": 1, "code": 200, "data": { "onrampLimit": 7000, "offrampLimit": 7000, "monthlyLimitUsedOnramp": 20, "monthlyLimitUsedOfframp": 0, "isNextKycVerificationRequired": 1 } }
{ "status": 0, "code": 400, "error": "Missing required parameter(s) -> fiatType or customerId." }
{ "status": 0, "code": 500, "error": "Internal Server Error." }
status -> 0 is for unsuccessful request, 1 is for a successful one
data -> current kycStatus can be
onrampLimit -> onramp limit of a user based on the kycStatus
offrampLimit -> offramp limit of a user based on the kycStatus
monthlyLimitUsedOnramp -> monthly limit used by user for onramp
monthlyLimitUsedOfframp -> monthly limit used by user for offramp
isNextKycVerificationRequired -> whether the more kyc verification stepso of a user remaining or not. (1 -> remaining, 0-> full kyc verified)
Refer fiatType mapping.