2017-02-06 12:09:03 +00:00
|
|
|
get:
|
2023-08-07 11:44:56 +00:00
|
|
|
description: Get the history of the specified invoice as a list of events.
|
2017-02-06 12:09:03 +00:00
|
|
|
tags:
|
|
|
|
- Invoices
|
|
|
|
operationId: getInvoiceEvents
|
|
|
|
parameters:
|
2023-08-07 11:44:56 +00:00
|
|
|
- $ref: "#/parameters/requestID"
|
|
|
|
- $ref: "#/parameters/deadline"
|
|
|
|
- $ref: "#/parameters/invoiceID"
|
2017-02-06 12:09:03 +00:00
|
|
|
- name: limit
|
|
|
|
in: query
|
2023-08-07 11:44:56 +00:00
|
|
|
description: Selection limit
|
2017-02-06 12:09:03 +00:00
|
|
|
required: true
|
|
|
|
type: integer
|
|
|
|
format: int32
|
|
|
|
minimum: 1
|
|
|
|
- name: eventID
|
|
|
|
in: query
|
2023-08-07 11:44:56 +00:00
|
|
|
description: >
|
|
|
|
Event identifier.
|
2017-02-06 12:09:03 +00:00
|
|
|
|
2023-08-07 11:44:56 +00:00
|
|
|
All events that occurred in the system _after_ the specified event will be included in the selection.
|
2017-02-06 12:09:03 +00:00
|
|
|
required: false
|
2017-05-18 16:49:29 +00:00
|
|
|
type: integer
|
|
|
|
format: int32
|
2017-02-06 12:09:03 +00:00
|
|
|
responses:
|
2023-08-07 11:44:56 +00:00
|
|
|
"200":
|
|
|
|
description: A list of events
|
2017-02-06 12:09:03 +00:00
|
|
|
schema:
|
|
|
|
type: array
|
|
|
|
items:
|
2023-08-07 11:44:56 +00:00
|
|
|
$ref: "#/definitions/InvoiceEvent"
|
|
|
|
"404":
|
|
|
|
$ref: "#/responses/NotFound"
|
|
|
|
"401":
|
|
|
|
$ref: "#/responses/Unauthorized"
|
|
|
|
"400":
|
|
|
|
$ref: "#/responses/DefaultLogicError"
|