Payment Advice

Payment Advice

Request Body

{
  "amount": 100,
  "currency": "NGN",
  "merchantRef": "13277654324537993",
  "narration": "test",
  "callBackUrl": "https://your_callback_url.com/",
  "splitCode": "",
  "shouldTokenizeCard": false,
  "customer": {
    "customerId": "csg",
    "customerLastName": "Chams",
    "customerFirstName": "Switch",
    "customerEmail": "chams@chamsswitch.com",
    "customerPhoneNumber": "",
    "customerAddress": "",
    "customerCity": "",
    "customerStateCode": "",
    "customerPostalCode": "",
    "customerCountryCode": "NG"
  },
  "integrationKey": "3cb46eec-05f1-4173-abeb-89c8ebe625f1",
  "notificationUrl": "https://your_notification_url.com/",
  "mcc": 0,
  "merchantDescriptor": "string",
  "channels": [ "Card", "BankTransfer", "USSD" ]
}

Response Code Description

Code	Description
200	Success
400     Bad Request

Response Body

{
  "requestSuccessful": true,
  "responseData": {
    "currency": "NGN",
    "adviceReference": "eced58f4-c187-4f3c-8482-062cde42red5",
    "merchantRef": "13277654324537993",
    "amount": 100,
    "narration": "test",
    "customerId": "1092768",
    "charge": 0,
    "status": "Pending",
    "customerFullName": "Chams Switch",
    "merchantName": "Chams Switch",
    "paymentUrl": "https://payment.pelpay.ng/pay?adviceReference=eced58f4-c187-4f3c-8482-062cde42red5",
    "channels": [
      "Card",
      "BankTransfer",
      "USSD"
    ],
    "channel": [
      "Card",
      "BankTransfer",
      "USSD"
    ],
    "customerCharge": 0,
    "merchantCharge": 0,
    "vatCharge": 0
  }
}

Last updated