swag-payments/spec/paths/processing@invoices@{invoiceID}@events.yaml

35 lines
966 B
YAML
Raw Normal View History

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: |
Идентификатор события.
Все события, возникшие в системе _после_ указанного, попадут в выборку.
required: false
type: string
responses:
'200':
description: Набор событий
schema:
type: array
items:
$ref: '#/definitions/Event'
'400':
$ref: '#/responses/BadRequest'
'404':
$ref: '#/responses/NotFound'