POST
/
merchants
/
accounts
/
update
cURL
curl -X POST "https://api.onekhusa.com/sandbox/v1/merchants/accounts/update" \
  --header "Authorization: Bearer your-jwt-token" \
  --header "Content-Type: application/json" \
  --header "X-Organisation-Id: FYH0NTVW0DXK" \
  --header "X-Merchant-Account-Number: 35253486" \
  --header "Accept-Language: en" \
  -d '{
    "merchantAccountNumber": 35253486,
    "accountName": "KHUSA VILLAGE BANKS",
    "currencyCode": "MWK",
    "capturedBy": "johndoe@example.com",
    "levelNumber": 2
  }'
"Merchant has been updated successfully"

Authorizations

Authorization
string
header
required

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

Headers

X-Organisation-Id
string
required

The organization identifier

X-Merchant-Account-Number
string
required

The merchant account number

Accept-Language
string
default:en

Preferred language for the response

Body

application/json
merchantAccountNumber
integer
required

The unique identifier of the merchant account to update

Example:

35253486

accountName
string
required

The updated name of the merchant account

Example:

"KHUSA VILLAGE BANKS"

currencyCode
string
required

The updated currency code (can only be changed if merchant has no transactions)

Example:

"MWK"

capturedBy
string<email>
required

Email address of the user updating the merchant

Example:

"johndoe@example.com"

levelNumber
integer
required

The updated level number for the merchant. See Get Authorization Levels for available levels.

Example:

2

Response

200 - application/json

OK - Merchant successfully updated

The response is of type string.

Example:

"Merchant has been updated successfully"