Skip to content

Commit

Permalink
Modified api/openapi/apis/users.yaml
Browse files Browse the repository at this point in the history
Reingold Shekhtel authored and Reingold Shekhtel committed Jan 8, 2025
1 parent f65907e commit e4567b3
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions api/openapi/apis/users.yaml
Original file line number Diff line number Diff line change
@@ -27,6 +27,46 @@ servers:
description: Base path of Report Portal API
paths:
/invitations:
get:
summary: Get invitations
operationId: get-invitations
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/InvitationPage'
'400':
$ref: '#/components/responses/Error'
'401':
$ref: '#/components/responses/Error'
'403':
$ref: '#/components/responses/Error'
parameters:
- $ref: ../parameters/Offset.yaml
- $ref: ../parameters/Limit.yaml
- $ref: ../parameters/Order.yaml
- schema:
type: string
default: email
in: query
name: sort
description: Indicate sort by field.
- schema:
type: string
format: email
in: query
name: email
description: Filter invitations by email.
description: |-
Get all invitations
### Authority
- `ADMINISTRATOR`
tags:
- Invitation
post:
summary: Create user invitation
operationId: post-invitations

0 comments on commit e4567b3

Please sign in to comment.