REST API | Visa Platform Connect

Example: Performing a Tap-Initiated Sale for Debt Recovery with a Token Using the REST API

Endpoint:
  • Test:
    POST
    https://apitest.cybersource.com
    /pts/v2/payments
  • Production:
    POST
    https://api.cybersource.com
    /pts/v2/payments
Request
{     "clientReferenceInformation": {         "transactionId": "12987654321",         "partner": {             "thirdPartyCertificationNumber": "123456789012"         }     },     "processingInformation": {         "industryDataType": "transit",         "reconciliationId": "dsgfsgsgsfdsgf",         "captureOptions": {             "dateToCapture": "0114"         },         "capture": "true",         "processingInformation.commerceIndicator" : "retail",         "authorizationOptions": {             "debtRecoveryIndicator": "true",             "deferredAuthIndicator": "true"         }     },     "orderInformation": {         "amountDetails": {             "totalAmount": "10.00",             "currency": "THB"         }     },     "paymentInformation": {         "card": {             "type": "001"         }     },     "tokenInformation": {         "jti": "a76392f4-cde4-97aa-1111-0242ac14c005"     },     "pointOfSaleInformation": {         "terminalId": "12345678",         "catLevel": "2",         "entryMode": "contactless",         "terminalCapability": "5",         "terminalPinCapability": "0"     } }
Response to a Successful Request
{     "_links": {         "void": {             "method": "POST",             "href": "/pts/v2/payments/6502821914766725604006/voids"         },         "self": {             "method": "GET",             "href": "/pts/v2/payments/6502821914766725604006"         }     },     "clientReferenceInformation": {         "code": "123456",         "transactionId": "12987654321"     },     "id": "6502821914766725604006",     "orderInformation": {         "amountDetails": {             "totalAmount": "10.00",             "authorizedAmount": "10.00",             "currency": "THB"         }     },     "paymentAccountInformation": {         "card": {             "type": "001"         }     },     "paymentInformation": {         "accountFeatures": {             "category": "A",             "group": "0"         },         "tokenizedCard": {             "type": "001"         },         "card": {             "type": "001"         }     },     "pointOfSaleInformation": {         "emv": {             "tags": "5004564953419F26087C14E9BE1F1065094F07A0000000031010820220009F360203709F0702C0809F2701409F100706010A03902000950500000000009F3704DB6AD1679A032111145F3401019F1A0203809F33036008C89F34031F03029F3501259F02060000000000009F03060000000000005F2A0209789C01005F2D046974656E9F0607A00000000310108407A00000000310109F21031726589F6E04207000009F40052000000001DFFEC30A020100"         }     },     "processorInformation": {         "systemTraceAuditNumber": "114880",         "approvalCode": "831000",         "networktransactionId": "016153570198200",         "retrievalReferenceNumber": "210811114880",         "transactionId": "12987654321",         "responseCode": "00",         "avs": {             "code": "2"         }     },     "reconciliationId": "dsgfsgsgsfdsgf",     "status": "AUTHORIZED",     "submitTimeUtc": "2022-04-18T11:43:11Z" }