Endpoints
POST /api/v1/IndividualPayment/{id}/get-money-transfer-charge
id = Individual Id
Post
{
  "accountNo": "string",
  "amount": 1,
  "currency": "string",
  "productCode": "string"
}Id: Provide a valid Individual Id
productCode: Can be any item against charge is being calculated. eg, “Transfer Fee”
currency: examples are BNG
amount: Non Zero amount
accountNo: Please provide a valid customer account number.
Response
{
  "accountNo": "string",
  "accountBalance": 0,
  "accountCurrency": "string",
  "transactionAmount": 0,
  "transactionCurrency": "string",
  "transactionFee": 0,
  "transactionFeeCurrency": "string"
}Status Codes
- Status Code 200, If all good
- Status Code 400 with Error Messages in case of Bad Input
- Status Code 500 with No Error Message in case of Server Failure
