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
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