Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#171487131] Fix specs #35

Merged
merged 5 commits into from
Mar 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions openapi/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,11 @@ paths:
schema:
$ref: "#/definitions/SubscriptionKeys"
"400":
description: Subscription not found
description: Bad request
"403":
description: Forbidden
"404":
description: Subscription not found
"500":
description: Internal server error
put:
Expand All @@ -264,9 +266,11 @@ paths:
schema:
$ref: "#/definitions/SubscriptionKeys"
"400":
description: Subscription not found
description: Bad request
"403":
description: Forbidden
"404":
description: Subscription not found
"500":
description: Internal server error
/users:
Expand All @@ -291,10 +295,11 @@ paths:
parameters:
- name: body
in: body
required: true
schema:
$ref: "#/definitions/UserPayload"
responses:
"201":
"200":
description: The new User
schema:
$ref: "#/definitions/UserCreated"
Expand Down Expand Up @@ -343,6 +348,7 @@ paths:
description: The email of the User
- name: body
in: body
required: true
schema:
$ref: "#/definitions/UserGroupsPayload"
responses:
Expand Down Expand Up @@ -377,6 +383,7 @@ paths:
description: The id of the Subscription
- name: body
in: body
required: true
schema:
$ref: "#/definitions/ProductNamePayload"
responses:
Expand Down