Retrieve a single fee
GET/api/fee_transaction_details/:id
The endpoint is designed to retrieve the details of a single fee based on a specific fee ID.
Request
Path Parameters
id stringrequired
FeeTransactionDetail identifier
Responses
- 200
- 401
- 403
- 404
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
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"
}
Not Found -- The requested resource could not be found.
Loading...