POST
/
api
/
v1
/
operations
/
intra-transfer
Perform a batch intra-bank transfer.
curl --request POST \
  --url https://demoapi.saasphereltd.com/api/v1/operations/intra-transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "value_date": "2025-11-26",
  "debits": [
    "architecto"
  ],
  "credits": [
    "architecto"
  ]
}
'
{
  "status": "00",
  "message": "Transfer successful",
  "data": {
    "tranId": "123456"
  }
}

Authorizations

Authorization
string
header
required

Paste only the token (no "Bearer " prefix).

Body

application/json
value_date
string
required

The value date for the transaction.

Example:

"2025-11-26"

debits
string[]
required

Array of debit transactions. Each item should contain account_no, amount, narration, reference.

Example:
["architecto"]
credits
string[]
required

Array of credit transactions. Each item should contain account_no, amount, narration, reference.

Example:
["architecto"]

Response

200 - application/json
status
string
Example:

"00"

message
string
Example:

"Transfer successful"

data
object