mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-06 17:45:24 +00:00
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
post:
|
|
description: Создать нового плательщика.
|
|
tags:
|
|
- Customers
|
|
operationId: createCustomer
|
|
parameters:
|
|
- $ref: '#/parameters/requestID'
|
|
- name: customerParams
|
|
description: Параметры создаваемого плательщика
|
|
in: body
|
|
required: true
|
|
schema:
|
|
$ref: '#/definitions/Customer'
|
|
responses:
|
|
'201':
|
|
description: Плательщик создан
|
|
schema:
|
|
$ref: '#/definitions/CustomerAndToken'
|
|
'400':
|
|
description: Ошибочные данные плательщика
|
|
schema:
|
|
type: object
|
|
required:
|
|
- code
|
|
- message
|
|
properties:
|
|
code:
|
|
description: |
|
|
[Код ошибки](#tag/Error-Codes)
|
|
type: string
|
|
enum:
|
|
- operationNotPermitted
|
|
- invalidShopID
|
|
- invalidPartyStatus
|
|
- invalidShopStatus
|
|
- invalidRequest
|
|
message:
|
|
description: Человекочитаемое описание ошибки
|
|
type: string
|
|
example: Operation not permitted
|