2017-02-06 12:09:03 +00:00
|
|
|
|
get:
|
|
|
|
|
description: Получить историю указанного инвойса в виде набора событий.
|
|
|
|
|
tags:
|
|
|
|
|
- Invoices
|
|
|
|
|
operationId: getInvoiceEvents
|
|
|
|
|
parameters:
|
|
|
|
|
- $ref: '#/parameters/requestID'
|
|
|
|
|
- $ref: '#/parameters/invoiceID'
|
|
|
|
|
- name: limit
|
|
|
|
|
in: query
|
|
|
|
|
description: Лимит выборки
|
|
|
|
|
required: true
|
|
|
|
|
type: integer
|
|
|
|
|
format: int32
|
|
|
|
|
minimum: 1
|
|
|
|
|
- name: eventID
|
|
|
|
|
in: query
|
|
|
|
|
description: |
|
2017-02-06 17:15:39 +00:00
|
|
|
|
Идентификатор события.
|
2017-02-06 12:09:03 +00:00
|
|
|
|
|
|
|
|
|
Все события, возникшие в системе _после_ указанного, попадут в выборку.
|
|
|
|
|
required: false
|
|
|
|
|
type: string
|
|
|
|
|
responses:
|
|
|
|
|
'200':
|
|
|
|
|
description: Набор событий
|
|
|
|
|
schema:
|
|
|
|
|
type: array
|
|
|
|
|
items:
|
|
|
|
|
$ref: '#/definitions/Event'
|
|
|
|
|
'400':
|
|
|
|
|
$ref: '#/responses/BadRequest'
|
|
|
|
|
'404':
|
|
|
|
|
$ref: '#/responses/NotFound'
|