Get Fee Profile by Account Number
'GetFeeProfileByAccountNumber' API enables to fetch the fee details of an account
Bank or financial institution can fetch transaction fee details for an account, if required. On providing the Account number as request, all the transaction fee details of chosen account can be fetched out.
Method: POST
{{URL}}/jsonrpc
Headers
Name | Value |
---|---|
Content-Type | application/json |
Example
Payload Parameters
Parameter | Description |
---|---|
method Mandatory | String API method that is being called to get fee profile by account number through fee service Constant value: "FeeService.GetFeeProfileByAccountNumber" |
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 |
accountNumber Mandatory | String Account number of the account for which the fee service details to be fetched Sample value: "200736754590214" |
- cURL
- C#
- Go
- NodeJS
curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"FeeService.GetFeeProfileByAccountNumber","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"{{ApplicationKeyId}}","credential":"{{Credential}}"},"payload":{"accountNumber":"200736754590214"}}}'
var options = new RestClientOptions("{{URL}}/jsonrpc")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""method"": ""FeeService.GetFeeProfileByAccountNumber"",
" + "\n" +
@" ""id"": ""1"",
" + "\n" +
@" ""params"": {
" + "\n" +
@" ""api"": {
" + "\n" +
@" ""signature"": ""{{signature}}"",
" + "\n" +
@" ""keyId"": ""{{ApplicationKeyId}}"",
" + "\n" +
@" ""credential"": ""{{Credential}}""
" + "\n" +
@" },
" + "\n" +
@" ""payload"": {
" + "\n" +
@" ""accountNumber"": ""200736754590214""
" + "\n" +
@" }
" + "\n" +
@" }
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "{{URL}}/jsonrpc"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"method": "FeeService.GetFeeProfileByAccountNumber",`+"
"+`
"id": "1",`+"
"+`
"params": {`+"
"+`
"api": {`+"
"+`
"signature": "{{signature}}",`+"
"+`
"keyId": "{{ApplicationKeyId}}",`+"
"+`
"credential": "{{Credential}}"`+"
"+`
},`+"
"+`
"payload": {`+"
"+`
"accountNumber": "200736754590214"`+"
"+`
}`+"
"+`
}`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/jsonrpc',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"method": "FeeService.GetFeeProfileByAccountNumber",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{Credential}}"
},
"payload": {
"accountNumber": "200736754590214"
}
}
});
req.write(postData);
req.end();
Body
{
"method": "FeeService.GetFeeProfileByAccountNumber",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{Credential}}"
},
"payload": {
"accountNumber": "200736754590214"
}
}
}
Response: 200
Response Parameters
Parameter | Description |
---|---|
id | String Response ID echoed from the request ID Sample value: "1" |
result | Object |
ID | String Unique ID that identifies the fee profile Sample value: "41002" |
createdDate | String Date and time of the fee profile was created Sample value: "2023-05-02T10:01:26.303Z" |
updatedDate | String Date and time of the fee profile was updated Sample value: "22023-05-02T10:20:47.824Z" |
name | String Name of the fee profile Sample value: "accountFee" |
transactionFees | Array |
transactionType | String Type of transaction for which the fee is applicable Sample value: "BILLPAY" |
feeAmount | Number Per transaction fee in cents Sample value: 100 |
tax | Number Tax in percentage of fee amount Sample value: 2 |
accountNumber Mandatory | String Account number of the account for which the fee service details have been fetched Sample value: "200736754590214" |
accountID Mandatory | String Unique ID of the account for which the fee service details have been fetched Sample value: "22009" |
{
"id": "1",
"result": {
"ID": "41002",
"createdDate": "2023-05-02T10:01:26.303Z",
"updatedDate": "2023-05-02T10:20:47.824Z",
"name": "accountFee",
"transactionFees": [
{
"transactionType": "BILLPAY",
"feeAmount": 100,
"tax": 2
},
{
"transactionType": "INTERNAL_TRANSFER",
"feeAmount": 100,
"tax": 3
}
],
"accountNumber": "200736754590214",
"accountID": "22009"
}
}