List asset transactions
GET/companies/:company_id/assets/:asset_id/transactions
List asset transactions
Request
Path Parameters
asset_id uuidrequired
Query Parameters
from string
to string
processed_from string
processed_to string
Responses
- 200
A JSON array of asset transactions
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id stringrequired
The unique identifier of the transaction
name stringrequired
The name/description of the transaction
date stringnullablerequired
The date of the transaction.
amount numberrequired
The amount of the transaction (in EUR)
type stringrequired
The type of the transaction
processed stringrequired
The date when the transaction was last processed by the system
manager
object
nullable
The manager linked to the transaction
id stringrequired
name stringrequired
[
{
"id": "tx-123456-abcdef",
"name": "Payment for services",
"date": "2024-03-15",
"amount": 1250.5,
"type": "payment",
"processed": "string",
"manager": {
"id": "adfdfaca-48f0-4f3b-b30a-c6d97293090c",
"name": "Jean dupont"
}
}
]
Loading...