Initialize Payment
Once user is ready to make payment on your website or app, follow the instructions here to redirect user with payment payload to A1Pay for payment processing.
Start Payment
POST
https://a1pay.net/pay/pay
Submit an HTML form to this endpoint. Method should be POST and the action should be set to the URL above
Request Body
TransType
string
Short description of the type of transaction e.g School Fees
PayerNumber
string
Identification number for the user making payment
OtherNames
string
User's othernames or middlename
ref
string
Your unique transaction reference.
Validity
number
Duration in seconds before this payment should expire
PhoneNumber
string
User's Phone number
SurName
string
User's Surname or Lastname
FirstName
string
User's firstname
EmailAddress
string
User's email address
Amount
number
How much the user is expected to pay for the goods or service
MerchantId
string
Your Merchant ID provided to you at registration
hash
string
SHA256 of Amount in two decimal places + MerchantId + SecretKey
Ensure that you have your CallbackURL and ReturnURL ready to receive responses from A1Pay. Once a transaction is successful, A1Pay will redirect the user to your ReturnURL with URL parameter Ref which is the A1Pay transaction reference along with URL parameter Response which will be 00 if the transaction is successful.
Another URL parameter MerchantRef will also be passed to your ReturnURL. This will hold your unique transaction reference, and you can query A1Pay with this parameter. See more on this here.
A1Pay will also send a post request to your CallbackURL with the transaction status
Always ensure to call the A1Pay Query secure endpoint to confirm the transaction status received by the ReturnURL, this is the recommended practice to prevent malicious users from circumventing your system.
Last updated