Skip to main content

Intra Wallet Transfer

POST /transfers/intra/wallet

Description

Perform an intra wallet transfer.

Path Parameters

NameTypeDescription
NoneNo parameters

Request Headers

NameTypeDescription
countryCodestringThe country code (header)
tenantIdstringThe tenant ID (header)
userIdstringThe user ID (header)

Request Body

  • Content Type: application/json
{
"debitAccountId": "string",
"recipientAccountId": "string",
"amount": 100,
"narration": "string",
"category": "SALES",
"userId": "string",
"requestId": "string"
}

Response Code: 200 - OK

Description

Intra wallet transfer successful.

Response Fields

FieldTypeDescription
statusbooleanIndicates if the operation was successful
statusCodeintegerStatus code
messagestringResponse message
dataobjectData related to the transfer
errorsarrayList of error messages, if any

Example

{
"status": true,
"statusCode": 0,
"message": "Intra wallet transfer successful",
"data": {},
"errors": [
{
"message": "Some error occurred",
"descriptiveMessage": "Detailed error message"
}
]
}

Headers

Content-TypeValue
apiKey{{apiKey}}
countryCodestring
tenantIdstring
userIdstring

Body

{
"debitAccountId": "acc123",
"recipientAccountId": "acc456",
"amount": 100,
"narration": "Payment for services",
"category": "SALES",
"userId": "usr789",
"requestId": "req123"
}

🔑 Authentication bearer

ParamValueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request POST \ 
--url /transfers/intra/wallet \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!