mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-06 17:45:24 +00:00
36 lines
940 B
YAML
36 lines
940 B
YAML
get:
|
|
description: |
|
|
Получить локализованные названия геопозиций плательщиков по их
|
|
идентификаторам.
|
|
operationId: getLocationsNames
|
|
tags:
|
|
- Geo
|
|
parameters:
|
|
- $ref: '#/parameters/requestID'
|
|
- $ref: '#/parameters/deadline'
|
|
- name: language
|
|
in: query
|
|
description: Язык для локализации
|
|
required: true
|
|
type: string
|
|
- name: geoIDs
|
|
in: query
|
|
description: Идентификаторы геопозиций
|
|
required: true
|
|
type: array
|
|
collectionFormat: csv
|
|
items:
|
|
type: integer
|
|
format: int32
|
|
responses:
|
|
'200':
|
|
description: Locations Names
|
|
schema:
|
|
type: array
|
|
items:
|
|
$ref: '#/definitions/LocationName'
|
|
'401':
|
|
$ref: '#/responses/Unauthorized'
|
|
'400':
|
|
$ref: '#/responses/DefaultLogicError'
|