Retrieve a single account transaction
This API endpoint is tailored to retrieve detailed information about an individual transaction, serving as a valuable tool for accessing specific transaction data within your system.
Path Parameters
- id string required
Transaction identifier
Responses
- 200
- 401
- 403
- 404
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
- id integer
- currency string
- amount string
- type string
Possible values: [
fee
,payin
,payout
,peer
,fx
,card
] - executionDate string
- executed boolean
- createdAt string
- updatedAt string
- account integer
- transactionDetailId integernull
- tags string[]
documents object[]
Array [id stringname stringnullmimeType string]
{
"id": "1",
"currency": "CHF",
"amount": "100.00",
"type": "payin",
"executionDate": "2023-01-01T00:00:00+00:00",
"executed": true,
"createdAt": "2023-01-01T00:00:00+00:00",
"updatedAt": "2023-01-01T00:00:00+00:00",
"account": 1,
"transactionDetailId": 1,
"tags": [
"tag1",
"tag2"
],
"documents": [
{
"id": 1,
"name": "document1",
"mimeType": "application/pdf"
}
]
}
Unauthorised -- Your access token is wrong.
- application/json
- Schema
- Example (from schema)
Schema
- type string
- title string
- detail string
{
"type": "string",
"title": "string",
"detail": "string"
}
Forbidden -- Access to the requested resource or action is forbidden.
- application/json
- Schema
- Example (from schema)
Schema
- type string
- title string
- detail string
{
"type": "string",
"title": "string",
"detail": "string"
}
Not Found -- The requested resource could not be found.
Loading...