Virtual Account
Virtual Account Service makes receiving payments from your customer seamless.
Request made without the authorization key will fail with a 401 (Service Not Authorize
) response code.
Create Static Virtual Account
This allows you to create a virtual account for merchants/agents.
Endpoint to create virtual account
POST
{{baseUrl}}/pip/softpos/create-virtual-account
The merchant super-agent can create a virtual account with this endpoint.
Headers
authorization*
String
secret-key
client-id*
String
Merchant Id
Content-Type*
String
application/json
Request Body
address*
String
customer address
customer_identifier*
String
customer's unique identifier
dob*
Date
customer date of birth (dd/mm/yyyy)
email*
String
customer email address
first_name*
String
customer first name
last_name*
String
customer last name
mobile_num*
String
customer's moblie number
gender*
String
customer gender ("1" - MALE, "2" -FEMALE )
bvn*
String
customer's bvn
Create POS Terminal
This allows you to create terminals for different businesses. The terminal is location-based and each location has an Id that you must include.
Endpoint for merchant to create terminal
POST
{{baseUrl}}/pip/softpos/create-terminal
Headers
Content-Type*
String
application/json
authorization*
String
secret-key
client-id*
String
Merchant ID
Request Body
name*
String
Name on terminal
email*
String
phone*
String
Phone number on terminal
location_id*
String
The Id of the terminal location
merchantId*
String
The merchant Id
Initiate Payment Service
This is a service which can be use to recieve payment using card, ussd and transfer. In order to SignUp for this service, the client will provide a wehbook to recieve a payment notification as part of the onboarding process.
Webhook Body
Endpoint to initiate payment
POST
{{baseUrl}}/pip/softpos/initiate-transaction
Initiate Transaction endpoint
Headers
Content-Type
application/json
Authorization
authorization
client-id
client-id
Body
amount
string
Value in Naira
callback_url
String
https://payvantage.com.ng
customer_name
String
Customer full Name
String
Customer email
transRef
String
Transaction Reference
Response
Sample Request
Sample Response
Last updated