|
@@ -23,6 +23,8 @@ paths:
|
|
|
responses:
|
|
|
200:
|
|
|
$ref: '#/components/responses/200AP'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
security:
|
|
|
- basicAuth: []
|
|
|
post:
|
|
@@ -38,6 +40,8 @@ paths:
|
|
|
$ref: '#/components/responses/201'
|
|
|
400:
|
|
|
$ref: '#/components/responses/400'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
409:
|
|
|
$ref: '#/components/responses/409'
|
|
|
413:
|
|
@@ -56,6 +60,8 @@ paths:
|
|
|
responses:
|
|
|
200:
|
|
|
$ref: '#/components/responses/200SP'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
security:
|
|
@@ -75,6 +81,8 @@ paths:
|
|
|
$ref: '#/components/responses/200AP'
|
|
|
400:
|
|
|
$ref: '#/components/responses/400'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
409:
|
|
@@ -96,6 +104,8 @@ paths:
|
|
|
description: successful operation
|
|
|
205:
|
|
|
description: Unable to delete. Data is used.
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
security:
|
|
@@ -118,6 +128,8 @@ paths:
|
|
|
type: array
|
|
|
items:
|
|
|
$ref: '#/components/schemas/Platform'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
security:
|
|
|
- basicAuth: []
|
|
|
post:
|
|
@@ -149,6 +161,8 @@ paths:
|
|
|
$ref: '#/components/schemas/Platform'
|
|
|
400:
|
|
|
$ref: '#/components/responses/400'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
409:
|
|
@@ -173,6 +187,8 @@ paths:
|
|
|
application/json:
|
|
|
schema:
|
|
|
$ref: '#/components/schemas/Platform'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
security:
|
|
@@ -208,6 +224,8 @@ paths:
|
|
|
$ref: '#/components/schemas/Platform'
|
|
|
400:
|
|
|
$ref: '#/components/responses/400'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
409:
|
|
@@ -227,6 +245,8 @@ paths:
|
|
|
responses:
|
|
|
200:
|
|
|
description: successful operation
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
security:
|
|
@@ -245,10 +265,12 @@ paths:
|
|
|
application/json:
|
|
|
schema:
|
|
|
type: array
|
|
|
- items:
|
|
|
+ items:
|
|
|
$ref: '#/components/schemas/User'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
security:
|
|
|
- - basicAuth: []
|
|
|
+ - basicAuth: []
|
|
|
post:
|
|
|
tags:
|
|
|
- users
|
|
@@ -268,10 +290,10 @@ paths:
|
|
|
example: abi
|
|
|
password:
|
|
|
type: string
|
|
|
- example: abi
|
|
|
+ example: abi123
|
|
|
name:
|
|
|
type: string
|
|
|
- example: abi
|
|
|
+ example: abidzar
|
|
|
responses:
|
|
|
201:
|
|
|
description: record successfully added
|
|
@@ -281,17 +303,21 @@ paths:
|
|
|
$ref: '#/components/schemas/User'
|
|
|
400:
|
|
|
$ref: '#/components/responses/400'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
409:
|
|
|
$ref: '#/components/responses/409'
|
|
|
413:
|
|
|
$ref: '#/components/responses/413'
|
|
|
+ security:
|
|
|
+ - basicAuth: []
|
|
|
/users/{userId}:
|
|
|
get:
|
|
|
tags:
|
|
|
- users
|
|
|
summary: find user by userId
|
|
|
description: return user by userId
|
|
|
- operationId: getUserByUserId
|
|
|
+ operationId: getUserById
|
|
|
parameters:
|
|
|
- $ref: '#/components/parameters/UserPath'
|
|
|
responses:
|
|
@@ -301,6 +327,8 @@ paths:
|
|
|
application/json:
|
|
|
schema:
|
|
|
$ref: '#/components/schemas/User'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
security:
|
|
@@ -310,7 +338,7 @@ paths:
|
|
|
- users
|
|
|
summary: update existing user except password
|
|
|
description: update user
|
|
|
- operationId: updateUserByUserId
|
|
|
+ operationId: updateUserById
|
|
|
parameters:
|
|
|
- $ref: '#/components/parameters/UserPath'
|
|
|
requestBody:
|
|
@@ -336,6 +364,8 @@ paths:
|
|
|
$ref: '#/components/schemas/User'
|
|
|
400:
|
|
|
$ref: '#/components/responses/400'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
409:
|
|
@@ -355,6 +385,8 @@ paths:
|
|
|
responses:
|
|
|
200:
|
|
|
description: successful operation
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
security:
|
|
@@ -376,9 +408,12 @@ paths:
|
|
|
schema:
|
|
|
type: object
|
|
|
properties:
|
|
|
- password:
|
|
|
+ oldPassword:
|
|
|
type: string
|
|
|
example: abi123
|
|
|
+ newPassword:
|
|
|
+ type: string
|
|
|
+ example: abi456
|
|
|
responses:
|
|
|
200:
|
|
|
description: successful operation
|
|
@@ -388,6 +423,10 @@ paths:
|
|
|
$ref: '#/components/schemas/User'
|
|
|
400:
|
|
|
$ref: '#/components/responses/400'
|
|
|
+ 401:
|
|
|
+ $ref: '#/components/responses/UnauthorizedError'
|
|
|
+ 403:
|
|
|
+ description: wrong old password
|
|
|
404:
|
|
|
$ref: '#/components/responses/404'
|
|
|
security:
|
|
@@ -506,6 +545,12 @@ components:
|
|
|
$ref: '#/components/schemas/Project'
|
|
|
400:
|
|
|
description: invalid data
|
|
|
+ UnauthorizedError:
|
|
|
+ description: Authentication information is missing or invalid
|
|
|
+ headers:
|
|
|
+ WWW_Authenticate:
|
|
|
+ schema:
|
|
|
+ type: string
|
|
|
404:
|
|
|
description: not found
|
|
|
409:
|