Skip to main content
Version: 1.0.2

Update Fee Profile by Account Number

'UpdateFeeProfileByAccountNumber' API enables to update a fee profile for an account

Bank or financial institution can update fee profile of an account, if required. On providing respective account number for which the profile to be updated along with transaction type and fee details as request, the fee profile is updated with an ID.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

method

Mandatory

String

API method that is being called to update fee profile by account number through fee service

Constant value: "FeeService.UpdateFeeProfileByAccountNumber"

id

Mandatory

String

Unique ID of API request

Sample value: "1"

params

Mandatory

Object

api

Mandatory

Object

signature

Mandatory

String

Signature for request validation

Sample value: "signature"

keyId

Mandatory

String

API key used for request authentication

Sample value: "ApplicationKeyId"

credential

Mandatory

String

API credential provided by NetXD

Sample value: "Credential"

payload

Mandatory

Object

monthlyFee

Optional

Number

Monthly fee amount in cents to be updated for the account

Sample value: 15

accountNumber

Mandatory

String

Account number of the account for which the fee profile is updated

Sample value: "200344329213521"

transactionFees

Optional

Array

transactionType

Optional

String

Transaction type for which the transaction fee is updated

Sample value: "CHEQUE_DEPOSIT"

feeAmount

Optional

Number

Fee amount in cents for the transaction type

Sample value: 1

isFixed

Optional

Boolean

Indicates whether the fee amount is fixed or variable

Sample value: true

tax

Optional

Number

Tax in percentage of fee amount to be updated

Sample value: 1


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"FeeService.UpdateFeeProfileByAccountNumber","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"{{ApplicationKeyId}}","credential":"{{Credential}}"},"payload":{"monthlyFee":15,"accountNumber":"200344329213521","_transactionFees":[{"transactionType":"CHEQUE_DEPOSIT","feeAmount":1,"isFixed":true,"tax":3},{"TransactionType":"MASSPAY","FeeAmount":2,"IsFixed":true,"Tax":1},{"TransactionType":"REMITTANCE","FeeAmount":2,"IsFixed":true,"Tax":1},{"TransactionType":"BILLPAY","FeeAmount":2,"IsFixed":true,"Tax":1}]}}}'

Body


{
"method": "FeeService.UpdateFeeProfileByAccountNumber",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{Credential}}"
},
"payload": {
"monthlyFee": 15,
"accountNumber": "200344329213521",
"_transactionFees": [
{
"transactionType": "CHEQUE_DEPOSIT",
"feeAmount": 1,
"isFixed": true,
"tax": 3
},
{
"TransactionType": "MASSPAY",
"FeeAmount": 2,
"IsFixed": true,
"Tax": 1
},
{
"TransactionType": "REMITTANCE",
"FeeAmount": 2,
"IsFixed": true,
"Tax": 1
},
{
"TransactionType": "BILLPAY",
"FeeAmount": 2,
"IsFixed": true,
"Tax": 1
}
]
}
}
}

Response: 200

Response Parameters
ParameterDescription

id

String

Response ID echoed from the request ID

Sample value: "1"

result

Object

ID

String

Unique ID of the updated fee profile

Sample value: "3760"


{
"id": "1",
"result": {
"ID": "3760"
}
}