Transactions
Show transaction
OAuth scope: organization.read
Retrieves a single transaction for a given bank account.
The response contains a single transaction that contributed to the bank account's balances (e.g., incomes, transfers, cards). All transactions visible in Qonto's UI can be fetched, as of API V2.
get/v2/transactions/{id}
Path parameters
idstring required
UUID of the transaction to retrieve.
Query parameters
includes[]'vat_details' | 'labels' | 'attachments'
Use this query parameter to embed the associated resources (labels, attachments and/or VAT details) of the transactions in the JSON response.
Headers
X-Qonto-Staging-Tokenstring
Required only for Sandbox API requests; to get one, please submit the following form: https://getqonto.atlassian.net/servicedesk/customer/portal/5/group/47/create/143.
Response
Returns a transaction.
Example response
{
"transaction": {
"amount_cents": 1000,
"local_amount_cents": 1087,
"local_currency": "USD",
"vat_rate": 10
}
}