Create Payment Link

Create a payment link for receiving and managing transactions

/request
POST https://staging-eagle.kongapay.com/request/payment-service/payment-request

This endpoint allows you to add a new payment link to your account.

# Headers

Name
Type
Description

Integration-Secret-Key

string

Unique integration key for merchant

Content-Type

string

Set value to application/json

Request Body

Name
Type
Description

title

string

Names the Link

amount

string

Total amount for transaction in kobo

reuseable

int

Determines if the link could be use multiple times

status

string

success_message

string

description

string

expires_at

string

Request


```postman_json
{
  "title": "string",
  "amount": 300,
  "expires_at": "2025-12-30 00:00:00",
  "description": "string",
  "status": "enabled",
  "success_message": "string",
  "reusable": 1
}
```

Response

{
  "status": "success",
  "message": "Create Payment Request request successful",
  "data": {
    "status": "success",
    "data": {
      "title": "string",
      "identifier": "OAHFC",
      "description": "string",
      "amount": 300,
      "expires_at": "2025-12-30 00:00:00",
      "success_message": "string",
      "status": "enabled",
      "url": "https://staging-kongapay-pg.kongapay.com/pay/OAHFC",
      "integration_id": 8,
      "reusable": 1,
      "id": 377
    }
  },
  "request_id": 1411816
}

Last updated