mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-06 09:35:22 +00:00
22 lines
567 B
YAML
22 lines
567 B
YAML
get:
|
||
description: Получить данные договора по его ID
|
||
operationId: getContractByIDForParty
|
||
tags:
|
||
- Contracts
|
||
parameters:
|
||
- $ref: '#/parameters/requestID'
|
||
- $ref: '#/parameters/deadline'
|
||
- $ref: '#/parameters/contractID'
|
||
- $ref: '#/parameters/partyID'
|
||
responses:
|
||
'200':
|
||
description: Contract found
|
||
schema:
|
||
$ref: '#/definitions/Contract'
|
||
'404':
|
||
$ref: '#/responses/NotFound'
|
||
'401':
|
||
$ref: '#/responses/Unauthorized'
|
||
'400':
|
||
$ref: '#/responses/DefaultLogicError'
|