mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-06 01:25:22 +00:00
93f37761be
* Translate into eng * Markdown fixes * Spelling fixes * Spelling fixes * Yaml fixes * Update openapi config
23 lines
576 B
YAML
23 lines
576 B
YAML
get:
|
|
description: Get all adjustments to the specified contract
|
|
operationId: getContractAdjustments
|
|
tags:
|
|
- Contracts
|
|
parameters:
|
|
- $ref: "#/parameters/requestID"
|
|
- $ref: "#/parameters/deadline"
|
|
- $ref: "#/parameters/contractID"
|
|
responses:
|
|
"200":
|
|
description: List of contract adjustments
|
|
schema:
|
|
type: array
|
|
items:
|
|
$ref: "#/definitions/ContractAdjustment"
|
|
"404":
|
|
$ref: "#/responses/NotFound"
|
|
"401":
|
|
$ref: "#/responses/Unauthorized"
|
|
"400":
|
|
$ref: "#/responses/DefaultLogicError"
|