Skip to main content
POST
/
api
/
bill-payment
/
initiate-payment
/
{zeepay_id}
Make Payment
curl --request POST \
  --url https://test.digitaltermination.com/api/bill-payment/initiate-payment/{zeepay_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "destination_account": "233201854694",
  "send_amount": 1,
  "receive_amount": 1
}
'
{
  "status": 200,
  "data": null,
  "message": "Transaction Processed Successfully",
  "zeepay_id": 26173
}

Authorizations

Authorization
string
header
required

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

Path Parameters

zeepay_id
string<uuid>
required

The Zeepay ID of the transaction.

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

Body

application/json
destination_account
number
required

The mobile Network to top up

Example:

"233201854694"

send_amount
number
required

The amount sent

Example:

1

receive_amount
number
required

The amount paid out

Example:

1

Response

200 - application/json

Transaction success response

status
integer
Example:

200

data
string
Example:

null

message
string
Example:

"Transaction Processed Successfully"

zeepay_id
number
Example:

26173