Hosted Payment Page

To collect funds using CARD, there are a couple of things you need to note.

1. Set Payment Method

CARD is the value to be set for the parameter, method in the request collection body. For card payments, since they are 3D by default, we expect you to provide a, redirect_url where we will redirect the customer when they complete or cancel the transaction once you have redirected them to the payment_url we will return.

{
  ...
  "method": "CARD",
  "redirect_url": "https://my-domain.com/redirect_url"
  ...
}

payment_url will be returned which you will redirect the customer to complete the payment

{
  ...
  "payment_url": "https://sandbox.dusupay.com/v1/completepayment",
  ...
}

3. Redirect customer

Whenever a payment_url is returned in any response body, you are expected to redirect the customer to it for them to be able to complete the transaction initiated.

Card Collection API

POST https://sandbox.dusupay.com/v1/collections

Headers

Request Body

{
    "code": 202,
    "status": "accepted",
    "message": "Transaction Initiated",
    "data": {
        "id": 615614,
        "request_amount": 7,
        "request_currency": "USD",
        "account_amount": 4286.0716,
        "account_currency": "NGN",
        "transaction_fee": 210.0175,
        "total_credit": 4076.0541,
        "provider_id": "local_ngn",
        "merchant_reference": "xxxxxxxx3",
        "internal_reference": "DUSUPAY5FNZFXBL9WI9S9Z",
        "payment_url": "https://sandbox.dusupay.com/v1/complete-payment/DUSUPAY5FNZFXBL9WI9S9Z/card",
        "transaction_status": "PENDING",
        "transaction_type": "collection",
        "message": "Transaction Initiated",
        "instructions": [],
        "customer_charged": false
    }
}

Last updated