Internal Deposit
POST /transfers/deposit/internal
Description
It can be used to do deposit for internal account.
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
{
"recipientAccountId": "string",
"amount": 100,
"sendersName": "string",
"sendersBankCode": "string",
"sendersAccountNumber": "string",
"userId": "string",
"narration": "string",
"requestId": "string"
}
Response Code: 200 - OK
Description
Internal deposit 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 deposit |
errors | array | List of error messages, if any |
Example
{
"status": true,
"statusCode": 0,
"message": "Internal deposit successful",
"data": {},
"errors": [
{
"message": "Some error occurred",
"descriptiveMessage": "Detailed error message"
}
]
}
Headers
| Content-Type | Value |
|---|---|
| apiKey | {{apiKey}} |
| countryCode | string |
| tenantId | string |
| userId | string |
Body
{
"recipientAccountId": "rec123",
"amount": 100,
"sendersName": "John Doe",
"sendersBankCode": "XYZ123",
"sendersAccountNumber": "123456789",
"userId": "usr456",
"narration": "Deposit for savings",
"requestId": "req789"
}
🔑 Authentication bearer
|Param |Value |Type|
|token |{{accessCode}} |string|
LANGUAGE
CURL REQUEST
curl --request POST \
--url /transfers/deposit/internal \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!