Skip to main content
POST
/
api
/
custom
/
transactions
/
tech-maxx
/
credits
/
banks
Credit bank account
curl --request POST \
  --url https://test.digitaltermination.com/api/custom/transactions/tech-maxx/credits/banks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customerName": "Internal QA",
  "bank_code": "300323",
  "amount": 1,
  "accountNumber": "2030160608116",
  "description": "Test Zeepay Bank Credit",
  "reference": "23453452",
  "callback_url": "https://your-domain.com/webhook/payment-status"
}
'
{
  "code": "411",
  "zeepay_id": 123456,
  "amount": "1",
  "message": "Pending Gateway Response"
}

Step 2: Credit the Bank Account

After retrieving the list of supported banks, use this endpoint to initiate a credit transaction to a specific bank account.
You’ll need the bank code obtained from the previous step, along with the account details and amount to complete the transfer.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
customerName
string
required

The receiver's name

Example:

"Internal QA"

bank_code
string
required

The bank code/ routing number

Example:

"300323"

amount
number
required

The amount to credit the bank account

Example:

1

accountNumber
string
required

The bank account number

Example:

"2030160608116"

description
string
required

The description of the transaction

Example:

"Test Zeepay Bank Credit"

reference
string
required

Transaction reference

Example:

"23453452"

callback_url
string

The callback URL (optional)

Example:

"https://your-domain.com/webhook/payment-status"

Response

Transaction success response

code
string

Static response code indicating the status

Example:

"411"

zeepay_id
integer

The Zeepay ID of the transaction

Example:

123456

amount
number

The amount to debit the mobile wallet

Example:

"1"

message
string

This is a response message from the third party

Example:

"Pending Gateway Response"