POST /capture
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
orderReferencestringRequiredExample:
The order reference to capture
ORDER12345Body
captureReferencestringRequiredExample:
A unique reference identifier for this capture request. This must be unique per merchant and transaction.
12345679280descriptionstringOptionalExample:
An optional description or note for this capture. This can be used to record the reason for capture, shipping details, or other relevant information.
manual captureamountnumberRequiredExample:
The amount to capture from the authorized order. Must be a non-negative number with up to 2 decimal places. For full capture, this should equal the order amount plus surcharge. For partial capture (if the APM supports them), this can be any amount up to the remaining authorized amount. The sum of all captures (including this one) cannot exceed the total order amount plus surcharge.
1Responses
200Success
application/json
400Error
application/json
401Error
application/json
404Error
application/json
post
/orders/{orderReference}/captureSample Request/Response
{
"captureReference": "LatEHAuPtpN2HSrTMK-1",
"description": "Please capture this order",
"amount": 100
}Last updated