- Introduction to Payments
- Standard Payment Processing
- Card Present Connect | Retail Processing
- Authorization with Contact EMV and Online PIN
- Authorization with Contact EMV and Offline PIN
- Card Present Connect | Mass Transit Processing
- American Express Delayed Online Authorization with EMV Data
- Tap-Initiated Authorization for Debt Recovery with EMV Data
- Debit and Prepaid Card Processing
- Processing Debit and Prepaid Authorizations
- Airline Data Processing
- Japanese Payment Options Processing
- Processing Payments Using Credentials
- Customer-Initiated Transactions with Credentials on File
- Delayed Transaction
- Incremental Transaction
- Merchant-Initiated Incremental Transaction with PAN
- No-Show Transactions
- Reauthorization Transaction
- Merchant-Initiated Reauthorization Transactions with PAN
- Resubmission Transaction
- Merchant-Initiated Resubmission Transaction with PAN
- Installment Payments
- Merchant-Initiated Installment Payments with PAN
- Recurring Payments
- Merchant-Initiated Recurring Payments with PAN
- Unscheduled COF Payments
- Token Management Service Processing
On This Page
Capture an Authorization
This section describes how to process a capture.
When a transaction is below the threshold for First Ride Risk protection, use the
capture service to capture funds from a declined authorization.
Endpoint
Production:
POST
https://api.cybersource.com
/pts/v2/payments/{id}
/capturesTest:
POST
https://apitest.cybersource.com
/pts/v2/payments/{id}
/capturesThe
{id}
is the transaction
ID returned in the authorization response.Required Fields for a Mass Transit Capture
Related Information
REST Example: Capture an Authorization
Request
{ "clientReferenceInformation": { "comments": "TransitDA BAU capture", "transactionId": "14987654321", "partner": { "thirdPartyCertificationNumber": "123456789012" } }, "orderInformation": { "amountDetails": { "totalAmount": "10.00", "currency": "EUR" } } }
Response to a Successful Request
{ "_links": { "void": { "method": "POST", "href": "/pts/v2/captures/6484688186356910704004/voids" }, "self": { "method": "GET", "href": "/pts/v2/captures/6484688186356910704004" } }, "clientReferenceInformation": { "comments": "capture", "code": "testcode1012", "transactionId": "14987654321" }, "id": "6484688186356910704004", "orderInformation": { "amountDetails": { "totalAmount": "10.00", "currency": "EUR" } }, "reconciliationId": "fgssgsgsgsfg", "status": "PENDING", "submitTimeUtc": "2022-03-28T12:00:18Z" }