Capture Authorized Transaction
Captures Funds from a Previously Authorized Transaction
This endpoint finalizes a payment by capturing funds that were previously authorized (locked).
- Provide the
transactionIdfrom the original authorization - Specify the
amountto capture (can be equal to or less than the authorized amount) - Upon success, the transaction status will change to
captured - Captured funds will be transferred to the merchant’s account
Note: Captures must be performed before the authorization expires.
Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
Requires the transactionId of the locked transaction and the amount to capture in the request body.
Response
Transaction successfully captured. Funds have been transferred from the customer's account to the merchant's account. The transaction status has been updated to captured.
This confirms that the payment has been finalized and the merchant can now fulfill the order or provide the service.
The unique identifier (UUID) of the captured transaction (same as the authorization ID).
The updated status of the transaction, which will be captured.
locked, captured, void, refunded The actual amount that was successfully captured, formatted to 2 decimal places.
x >= 0.01Must be a multiple of 0.01100
Currency code (ISO 4217) of the captured amount.
3"USD"
The timestamp (ISO 8601 format) when the transaction capture was successfully processed.
^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|[+-]\d{2}(?::?\d{2})?)$The unique identifier (UUID) assigned to the successfully bound card. Store this cardId securely, as it is required to reference this card in all subsequent transaction requests (/verify, /purchase, etc.).
A unique transaction identifier provided for the client’s reference. It can be used to track or correlate transactions
"CT6KQDDEC2"

