Quick Start
Get started guide to the payinvert api documentation
Get your API keys
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
Make your first request
To make your first request, send an authenticated request to the create order endpoint. This will create a order, the first step is to encrypt the data.
{
"customer": {
"first_name": "test",
"last_name": "test",
"mobile": "+2348101234566",
"country": "NG",
"email": "[email protected]"
},
"order": {
"amount": 100,
"reference": "ORD12DC89289033323",
"description": "Pay",
"currency": "NGN"
}
}Head over to the API References to get started with integration:
Last updated