Logo
Acquired.com API API Documentation

Transactions

Number of APIs: 5


1. Retrieve a transaction

GET {{url}}transactions/:transaction_id

Retrieves a transaction using the unique transaction_id. This identifier can be found in the response after submitting a payment.

https://docs.acquired.com/reference/fetch-transaction-by-id



2. Process a refund

POST {{url}}transactions/:transaction_id/refund

Process a refund for a specific payment. The refunded amount will by credited either via bank transfer or by refunding the amount onto your customer's card.

https://docs.acquired.com/reference/create-refund



3. Process a void

POST {{url}}transactions/:transaction_id/void

Process a cancellation of a transaction before it settles through a consumer's account.

https://docs.acquired.com/reference/create-void



4. Process a capture

POST {{url}}transactions/:transaction_id/capture

Process a capture of funds to settle the transaction.

https://docs.acquired.com/reference/create-capture



5. Retrieve all transactions

GET {{url}}transactions



ENDPOINTS