GET
/
merchants
/
limits
/
getAll
cURL
curl -X GET "https://dev.api.onekhusa.com/sandbox/v1/merchants/limits/getAll?merchantAccountNumber=859835783" \
  --header "Authorization: Bearer your-jwt-token" \
  --header "accept: application/json" \
  --header "Accept-Language: en"
[
  {
    "currencyCode": "MWK",
    "transactionCode": "MMW",
    "transactionDescription": "Merchant to mobile wallet",
    "transactionMinimumAmount": 100,
    "transactionMaximumAmount": 10000000,
    "dailyLimit": 20000000
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer , where is your access token.

Headers

Accept-Language
string
default:en

Preferred language for the response

Query Parameters

merchantAccountNumber
integer
required

The unique identifier of the merchant account

Example:

859835783

Response

Success Response (200)

currencyCode
string

Currency code for the transaction limits

Example:

"MWK"

transactionCode
string

Unique code identifying the transaction type

Example:

"MMW"

transactionDescription
string

Human-readable description of the transaction type

Example:

"Merchant to mobile wallet"

transactionMinimumAmount
number<decimal>

Minimum amount allowed per transaction

Example:

100

transactionMaximumAmount
number<decimal>

Maximum amount allowed per transaction

Example:

10000000

dailyLimit
number<decimal>

Maximum total transaction amount allowed per day

Example:

20000000