Retrieve a collection of fees
This API endpoint is designed to provide you with a detailed list of fees associated with an account, with the flexibility to filter and paginate the results to meet your specific needs.
Query Parameters
- page integer
Default value:
1
The collection page number
- itemsPerPage integer
Possible values:
<= 50
Default value:
30
The number of items per page
- pagination boolean
Enable or disable pagination
- executionDate[lte] string
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
- executionDate[lt] string
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
- executionDate[gte] string
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
- executionDate[gt] string
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
- currency string
- amount[lt] string
- amount[lte] string
- amount[gt] string
- amount[gte] string
- 200
- 401
- 403
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- id integer
- account integer
- currency string
- amount string
- executionDate stringnull
- comment stringnull
- status string
Possible values: [
pending
,executed
] - ]
[
{
"id": 1,
"account": 1,
"currency": "CHF",
"amount": "10.00",
"executionDate": "2023-01-01T00:00:00+00:00",
"comment": "Fee related comment",
"status": "executed"
}
]
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"
}