v1
latestOpenAPI 3.0.32026-07-248079274.0 KBTransactions
Process a capture
Process an authorisation of the transaction and then capture the funds later. Append the required transaction_id to the URL and enter the amount to be captured in the body of the request.
post/transactions/{transaction_id}/capture
Path parameters
transaction_idstring uuid required
Unique ID assigned by Acquired.com for the transaction.
Request body
Example request
{
"amount": 15.02
}Response
Created
Example response
{
"transaction_id": "a7e3fde5-5b83-44f4-9915-782bc7121717",
"status": "success",
"links": [
{
"rel": "self",
"href": "/v1/transactions/a7e3fde5-5b83-44f4-9915-782bc7121717"
}
]
}