Skip to main content
POST
/
api
/
v1
/
paymentlink
/
initiate
cURL
curl --request POST \
  --url https://api.novacpayment.com/api/v1/paymentlink/initiate \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "paymentLinkReference": "<string>",
  "amount": 123,
  "currency": "<string>",
  "checkoutCustomerData": {
    "email": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "phoneNumber": "<string>"
  },
  "metaData": "<string>",
  "checkoutCustomizationData": {
    "logoUrl": "<string>",
    "paymentDescription": "<string>",
    "checkoutModalTitle": "<string>"
  }
}
'
{
  "status": true,
  "message": "Transaction Initialized successfully",
  "data": {
    "transactionReference": "string",
    "amount": 0,
    "statusCode": "01",
    "statusMessage": "Transaction initiated successfully",
    "publicKey": "string",
    "paymentRedirectUrl": "string"
  }
}

Authorizations

Authorization
string
header
required

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

Body

Minimum string length: 1
amount
number<double>
required
currency
string
required
Minimum string length: 1
checkoutCustomerData
object
required
metaData
string | null
checkoutCustomizationData
object

Response

OK

status
boolean
message
string | null
data
unknown