-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yml
35 lines (35 loc) · 1.16 KB
/
openapi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
openapi: 3.1.0
info:
title: An openapi for shopping card client
description: This API allows to manipulate with shopping cart.
version: 1.0.0
paths:
/profile:
get:
summury: Получение профиля пользователя.
desription: Получение профиля авторизованного пользователя.
responses:
'200':
desription: Профиля пользователя полученен!
content:
application/json:
schema:
type: object
properties:
status: 200
message: Пользователь получен!
user:
_id: 24b4052f3f9cfb9ce172exfa
email: [email protected]
role: customer
'404':
desription: Профиль пользователя не найден!.
content:
application/json:
schema:
type: object
properties:
status: 404
message: Профиль не найден!
/registration:
/login: