Public
Documentation Settings

Sling External Payment API

  • Get Token

  • Initiate Payment

  • Make Payment through Card or Bank Transfer Channel

  • Get Final Status of the Transaction

Card

POSTPay With Card

https://vigipaysling-paymentext.staging.vggdev.com/api/v1/Payment/card

Depending on the status field returned in the response, route as follows:

  • PROVIDEPIN – allow the user enter his atm pin then call the
    PAY WITH CARD again. This time with the payers cardinfo, pin inclusive

  • OTP – user gets otp in phone or email, then call the OTP Api
    endpoint with the OTP, and cardinfo

  • PROCESSACS – Sling Payment Web receives an array key value pair, then uses
    those values to generate a form of this format:

html
<form id="form1" action = ACSUrl method = "post" >
 <input name="TermUrl" value = TermUrl >
 <input name="MD" value = MD >
<input name="PaReq" value = PaReq >
</form>
  • FAILED – An Error occurred during the payment process

  • On payment completion, call the GET STATUS Api for final
    status of the transaction.

Sample Card Details Below

PAN : 5123450161003312
EXP : 03/50 (MM/YY)
PIN : 1234
OTP : 123456

For Status OTP
CVV : 111

HEADERS
Httpbrowsercolordepth

0

Httpbrowserjavaenabled

true

Httpbrowserjavascriptenabled

true

Httpbrowserlanguage

English

Httpbrowserscreenheight

100

Httpbrowserscreenwidth

100

Httpbrowsertimedifference

1

Bodyformdata
ExpiryMonth

The Card Expiry Month *Required

ExpiryYear

The Card Expiry Year *Required

CardNumber

Card Number *Required

CVV

CVV *Required

Reference

The Reference gotten from Initiate Payment API *Required

CardPin

Card Pin

Example Request
curl
curl --location 'https://vigipaysling-paymentext.staging.vggdev.com/api/v1/Payment/card' \
--form 'ExpiryMonth="03"' \
--form 'ExpiryYear="50"' \
--form 'CardNumber="5123450161003312"' \
--form 'CVV="111"' \
--form 'Reference="FUL202241204233538604"' \
--form 'CardPin="1234"'
200 OK
Example Response
json
{
  "status": true,
  "responseData": {
    "reference": "FUL202241204233538604",
    "message": "Enter OTP for Demo Transaction",
    "redirectUrl": "www.google.com",
    "status": "OTP",
    "externalRedirectUrl": "",
    "visaParams": null
  },
  "message": null,
  "responseCode": "00"
}
Content-Type

application/json; charset=utf-8

Date

Wed, 12 Apr 2023 10:40:43 GMT

Server

Kestrel

Transfer-Encoding

chunked

POSTOTP

https://vigipaysling-paymentext.staging.vggdev.com/api/v1/Payment/otp
AUTHORIZATIONBearer Token
Token

<token>

Bodyformdata
ExpiryMonth

03

The Card Expiry Month *Required

ExpiryYear

50

The Card Expiry Year *Required

CardNumber

5123450161003312

Card Number *Required

CVV

111

CVV *Required

Reference

FUL202241204233538604

The Reference gotten from Initiate Payment API *Required

CardPin

1234

Card Pin

OTP

123456

OTP sent to payers mobile number

Example Request
curl
curl --location 'https://vigipaysling-paymentext.staging.vggdev.com/api/v1/Payment/otp' \
--form 'ExpiryMonth="03"' \
--form 'ExpiryYear="50"' \
--form 'CardNumber="5123450161003312"' \
--form 'CVV="111"' \
--form 'Reference="FUL202241204233538604"' \
--form 'CardPin="1234"' \
--form 'OTP="123456"'
200 OK
Example Response
json
{
  "status": true,
  "responseData": {
    "reference": null,
    "message": "Transaction Successful",
    "redirectUrl": "www.google.com?ref=FUL202241204233538604",
    "status": "SUCCESSFUL",
    "externalRedirectUrl": "",
    "visaParams": null
  },
  "message": null,
  "responseCode": "00"
}
Content-Type

application/json; charset=utf-8

Date

Wed, 12 Apr 2023 10:42:25 GMT

Server

Kestrel

Transfer-Encoding

chunked