Inter Bank Transfer
POST /transfers/inter/bank
Description
Inter bank transfer.
Path Parameters
| Name | Type | Description |
|---|---|---|
| None | No parameters |
Request Headers
| Name | Type | Description |
|---|---|---|
countryCode | string | The country code (header) |
tenantId | string | The tenant ID (header) |
userId | string | The user ID (header) |
Request Body
- Content Type:
application/json
{
"amount": 100,
"bank": {
"bankCode": "string",
"accountNumber": "stringstri",
"bankName": "string"
},
"category": "SALES",
"senderAccountId": "string",
"ownAccountId": "string",
"userId": "string",
"narration": "string",
"requestId": "string"
}
Response Code: 200 - OK
Description
Inter bank transfer successful.
Response Fields
| Field | Type | Description |
|---|---|---|
status | boolean | Indicates if the operation was successful |
statusCode | integer | Status code |
message | string | Response message |
data | object | Data related to the transfer |
errors | array | List of error messages, if any |
Example
{
"status": true,
"statusCode": 0,
"message": "Inter bank transfer successful",
"data": {},
"errors": [
{
"message": "Some error occurred",
"descriptiveMessage": "Detailed error message"
}
]
}
Headers
| Content-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
| countryCode | string |
| tenantId | string |
| userId | string |
Body
{
"amount": 100,
"bank": {
"bankCode": "XYZ123",
"accountNumber": "123456789",
"bankName": "Sample Bank"
},
"category": "SALES",
"senderAccountId": "acc123",
"ownAccountId": "own456",
"userId": "usr789",
"narration": "Payment for services",
"requestId": "req001"
}
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request POST \
--url /transfers/inter/bank \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!