API Explorer
Send Money
Intersubsidiary Bank Transfer

Inter Subsidiary Bank Transfer

Description This API is used to transfer money to another Equity bank account in another Subsidiary(another country where Equity bank is operating).

Test URL

POSThttps://uat.finserve.africa/v3-apis/transaction-api/v3.0/remittance/subsidiary

Live URL

POSThttps://api.finserve.africa/v3-apis/transaction-api/v3.0/remittance/subsidiary

Request Body parameters

TagData TypeRequiredDescription
source.nameStringYesSource account Name
source.countryCodeStringYessource accountCountry Code e.g. UGA
source.accountNumberStringYessource account number
source.currencyCodeStringYessource account currency code e.g UGX
destination.typeStringYesdestination type e.g bank
destination.countryCodeStringYesdestination account country code e.g. KE
destination.nameStringYesdestination name
destination.accountNumberStringYesdestination account number
transfer.typeStringYestransfer type ( SubsidiaryBankTransfer)
transfer.amountStringYestransfer amount
transfer.currencyCodeStringYestransfer currency code e.g. UGX
transfer.referenceStringYesunique reference number (min 12 characters, max 20 characters)
transfer.amountFloatYestransfer amount
transfer.dateDateYestransaction date
transfer.descriptionStringYestransaction description

Example Request

Signature Formulae e.g. 00013XXXX6836500.00KES192112602006
source.accountNumber+transfer.amount+transfer.currencyCode+transfer.reference
Example Request
curl -X POST \
	-d '{
    "source": {
        "name": "Jane Doe",
        "countryCode": "UGA",
        "accountNumber": "1036200681230",
        "currencyCode": "UGX"
    },
    "destination": {
        "type": "bank",
        "countryCode": "KE",
        "name": "John Doe",
        "accountNumber": "0020100014605"
    },
    "transfer": {
        "type": "SubsidiaryBankTransfer",
        "amount": "5002",
        "currencyCode": "UGX",
        "reference": "202312190820",
        "date": "2023-07-07",
        "description": "Test ISFT"
    }
}'  \
	-H 'Authorization: Bearer {{access_token}}'  \
	-H 'Content-Type: application/json'  \
	-H 'signature: {{signature}}'  \
	-L 'https://uat.finserve.africa/v3-apis/transaction-api/v3.0/remittance/subsidiary'

Example Response

Example Response
{
    "status": true,
    "code": 0,
    "message": "success",
    "reference": "202307071525",
    "data": {
        "transactionId": "S8985371",
        "status": "SUCCESS"
    }
}

Response Codes

Http Response CodeResponse CodeDescription
2000Request Processed Successfully
400900100Invalid Signature
401401, 401101Unauthorized access
403403Forbidden
500500Internal Server Error

Error Responses

400 Bad Request

Missing or invalid parameters in the request body.

{
  "status": false,
  "code": 400,
  "message": "Invalid request parameters",
  "error_code": "INVALID_REQUEST"
}

401 Unauthorized

Invalid or expired access token.

{
  "status": false,
  "code": 401,
  "message": "Invalid or expired access token",
  "error_code": "UNAUTHORIZED"
}

403 Forbidden

Valid credentials but invalid signature or insufficient permissions.

{
  "status": false,
  "code": 403,
  "message": "Invalid signature or insufficient permissions",
  "error_code": "FORBIDDEN"
}

404 Not Found

Account not found or invalid account number.

{
  "status": false,
  "code": 404,
  "message": "Source or destination account not found",
  "error_code": "ACCOUNT_NOT_FOUND"
}

Transaction Status Errors

Response StatusResponse CodeResponse Message
false111102Transaction with the passed reference cannot be found

📖 Step-by-Step Guide

Step 1: 🔑 Set Up Security Keys

Generate your private and public key pair and share your public key with Finserve. See the Security & Signatures Documentation (opens in a new tab) for detailed instructions.

Step 2: 🎫 Authenticate

Obtain an access token using the authentication endpoint. See the Authentication API documentation (opens in a new tab) for details.

Step 3: 📋 Prepare Transaction Details

Gather all required information.

Step 4: ✍️ Generate Signature

Create the signature string by concatenating in this exact order:

source.accountNumber+transfer.amount+transfer.currencyCode+transfer.reference

Sign this string using your private key, then Base64 encode the result.

Step 5: 📝 Set Up Headers

Include the following headers in your request:

  • Content-Type: application/json
  • Authorization: Bearer [your_access_token]
  • Signature: [your_base64_encoded_signature]

Step 6: 🔧 Construct Request Body

Create a JSON object with all required fields following the structure shown in the example request.

Step 7: 🚀 Send POST Request

Make a POST request to the internal bank transfer endpoint with your headers and body.


🌍 Supported Countries & Currencies

CountryCountry CodeCommon Currency Codes
KenyaKEKES
UgandaUGUGX
TanzaniaTZTZS
RwandaRWRWF
South SudanSSUSD
DRCDRCUSD

Best Practices

  1. ** Security**

    • Store your private key securely and never expose it in client-side code or version control
    • Always use HTTPS for API requests
    • Store access tokens securely
    • Regenerate signatures for each request
  2. ** Signature Generation**

    • Ensure exact string concatenation order: source.accountNumber+transfer.amount+transfer.currencyCode+transfer.reference
    • Do not include spaces, separators, or special characters in the concatenated string
    • Always Base64 encode the signature before including it in headers
    • Verify the values in the signature match exactly with the request body values
  3. ** Transaction Reference**

    • Use unique reference numbers for each transaction
    • Implement a reference generation system to avoid duplicates
    • Store reference numbers for reconciliation and audit purposes
    • Never reuse reference numbers, even for failed transactions
  4. Amount Formatting

    • Always use decimal format with two decimal places (e.g., "500.00")
    • Pass amounts as strings, not numbers
    • Ensure the amount is positive and within allowed limits
    • Verify amount matches exactly in signature and request body
  5. Error Handling

    • Implement retry logic with exponential backoff for transient errors
    • Log transaction attempts and responses for audit purposes
    • Handle signature validation errors by regenerating the signature
  6. Testing

    • Always test with the UAT endpoint before using the live endpoint
    • Use test account numbers provided in the documentation
    • Verify signature generation with sample data first
    • Test error scenarios to ensure proper handling
  7. Data Validation

    • Validate all account numbers match the expected format
    • Verify country codes are valid and supported
    • Ensure transfer dates are in the correct format (YYYY-MM-DD)
    • Validate currency codes match the destination country

Troubleshooting

Invalid Signature Error (403)

If you receive a 403 error with "Invalid signature":

  1. Verify the concatenation order: source.accountNumber+transfer.amount+transfer.currencyCode+transfer.reference
  2. Ensure no spaces or separators are included in the concatenated string
  3. Check that the signature is Base64 encoded
  4. Verify your public key is correctly registered with us
  5. Ensure the values in the signature match exactly with the request body values

Common Signature Mistakes

  • Using wrong concatenation order
  • Adding spaces or separators between values
  • Not Base64 encoding the final signature
  • Values in signature don't match request body values

Support

For questions or issues with this API: