FILTER BY TAG

Capture on Parking Devices

Use this information to process a capture on attended or unattended parking devices.

Endpoint

Production:
POST
https://api.visaacceptance.com
/pts/v2/payments/
{id}
/captures
Test:
POST
https://apitest.visaacceptance.com
/pts/v2/payments/
{id}
/captures
The
{id}
is the transaction ID returned in the authorization response.

Required Fields for a Capture on Parking Devices

IMPORTANT
For pre-authorized EMV contact transactions, the follow-on capture requests must include EMV tags.
clientReferenceInformation.code
clientReferenceInformation.comments
Set the value to
Parking Capture
.
clientReferenceInformation.partner.developerId
Visa Acceptance Solutions
provides the value for this field.
clientReferenceInformation.partner.solutionId
Visa Acceptance Solutions
provides the value for this field.
clientReferenceInformation.partner.thirdPartyCertificationNumber
Visa Acceptance Solutions
provides the value for this field.
orderInformation.amountDetails.currency
orderInformation.amountDetails.totalAmount
pointOfSaleInformation.emv.tags
This field is required for contact entry mode only.

REST Example: Capture for Visa on Parking Devices

Request
{ "clientReferenceInformation": { "code": "test123", "comments": "Parking Capture", "partner": { "developerId": "prodDeveloperId", "thirdPartyCertificationNumber": "prodTPCN", "solutionId": "prodSolutionId" } }, "orderInformation": { "amountDetails": { "totalAmount": "30.00", "currency": "USD" } } }
Response to a Successful Request
{ "_links": { "void": { "method": "POST", "href": "/pts/v2/captures/7720607252186978303813/voids" }, "self": { "method": "GET", "href": "/pts/v2/captures/7720607252186978303813" } }, "clientReferenceInformation": { "comments": "Parking Capture", "code": "test123", "partner": { "developerId": "prodDeveloperId", "solutionId": "prodSolutionId" } }, "id": "7720607252186978303813", "orderInformation": { "amountDetails": { "totalAmount": "30.00", "currency": "USD" } }, "reconciliationId": "7720606726016948703813", "status": "PENDING", "submitTimeUtc": "2026-02-25T23:05:25Z" }