Skip to main content
POST
/
api
/
v1
/
initiate
cURL
curl --request POST \
  --url https://api.novacpayment.com/api/v1/initiate \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transactionReference": "<string>",
  "amount": 123,
  "currency": "<string>",
  "metaData": "<string>",
  "redirectUrl": "<string>",
  "checkoutCustomerData": {
    "email": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "phoneNumber": "<string>"
  },
  "checkoutCustomizationData": {
    "logoUrl": "<string>",
    "paymentDescription": "<string>",
    "checkoutModalTitle": "<string>"
  }
}
'

Authorizations

Authorization
string
header
required

Input your Bearer token in this format - Bearer {your token here} to access this API

Body

transactionReference
string
required
Required string length: 16 - 50
amount
number<double>
currency
string | null
metaData
string | null
redirectUrl
string | null
checkoutCustomerData
object
checkoutCustomizationData
object

Response

200

OK