User Limit
Get the current user limit and monthlyUsed limit for onramp and offramp.
GET user limit details.
POST https://api.remitquickly.com/onramp/api/v2/whiteLabel/user/limit
Request Body
Name
Type
Description
customerId*
String
Unique id received from /kyc/url
{
"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": 1,
"code": 200,
"data": {
"onrampLimit": 7000,
"offrampLimit": 7000,
"monthlyLimitUsedOnramp": 20,
"monthlyLimitUsedOfframp": 0,
"isNextKycVerificationRequired": 1
}
}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)
Last updated