Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

This endpoint is protected with OAuth 2.0 Bearer token. To find out more about authorization for Monnify endpoints, check Here

Endpoint URL: {{base_url}}/api/v1/sdk/cards/secure-3d/authorize

...

Code Block
languagejson
{
    "transactionReference":"MNFY|9334|2022032416555920220405130551|279401182349",
    "apiKey":"XXXXXXXX",
    "collectionChannel":"API_NOTIFICATION",
    "card":{
        "number": "XXXXXX", 
        "expiryMonth": "XX", 
        "expiryYear": "XXXX", 
        "pin": "XXXX", 
        "cvv": "XXX"
        }
 }

...

Sample Response

Code Block
languagejson
{
    "requestSuccessful": true,
    "responseMessage": "success",
    "responseCode": "0",
    "responseBody": {
        "status": "SUCCESS",
        "transactionReference": "MNFY|34|20220405130551|182349",
        "paymentReference": "u063ysqjp809883",
        "authorizedAmount": 20.0
    }
}

Field Parameters

Field

Description

transactionReference

Unique reference generated for the transaction by Monnify

collectionChannel

"API_NOTIFICATION" only enabled merchants can access resource

card

Object containing card information

number

Card number

expiryMonth

Card expiration month

expiryYear

Card expiration year

pin

Card pin from card owner

cvv

Security code behind card

tokenId

Token id from the request response (otpData.id)

token

OTP from card owner (use 12345 for test card)

...