Skip to content

Commit 059720c

Browse files
committed
Add getters
Co-authored-by: Ralf Haferkamp <r.haferkamp@opencloud.eu> Signed-off-by: Christian Richter <c.richter@opencloud.eu> # Conflicts: # api/openapi-spec/v1.0.yaml
1 parent f2eb214 commit 059720c

1 file changed

Lines changed: 48 additions & 9 deletions

File tree

api/openapi-spec/v1.0.yaml

Lines changed: 48 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -142,15 +142,15 @@ paths:
142142
default:
143143
$ref: '#/components/responses/error'
144144
delete:
145-
tags:
146-
- me.photo
147-
summary: Delete the current user's profile photo
148-
operationId: DeleteOwnUserPhoto
149-
responses:
150-
'204':
151-
description: Success
152-
default:
153-
$ref: '#/components/responses/error'
145+
tags:
146+
- me.photo
147+
summary: Delete the current user's profile photo
148+
operationId: DeleteOwnUserPhoto
149+
responses:
150+
'204':
151+
description: Success
152+
default:
153+
$ref: '#/components/responses/error'
154154
'/v1beta1/extensions/org.libregraph/activities':
155155
get:
156156
tags:
@@ -2613,6 +2613,45 @@ paths:
26132613
schema:
26142614
$ref: '#/components/schemas/invitation'
26152615
x-ms-docs-operation-type: operation
2616+
get:
2617+
tags:
2618+
- invitations
2619+
summary: Get a list of invitations
2620+
operationId: ListInvitations
2621+
responses:
2622+
'200':
2623+
description: Retrieved invitations
2624+
content:
2625+
application/json:
2626+
schema:
2627+
title: Collection of invitations
2628+
type: object
2629+
properties:
2630+
value:
2631+
type: array
2632+
items:
2633+
$ref: '#/components/schemas/invitation'
2634+
2635+
/v1.0/invitations/{invitation-id}:
2636+
get:
2637+
tags:
2638+
- invitations
2639+
summary: Get an invitation by key
2640+
operationId: GetInvitation
2641+
parameters:
2642+
- name: invitation-id
2643+
in: path
2644+
description: 'key: id of invitation'
2645+
required: true
2646+
schema:
2647+
type: string
2648+
responses:
2649+
'200':
2650+
description: Retrieved invitation
2651+
content:
2652+
application/json:
2653+
schema:
2654+
$ref: '#/components/schemas/invitation'
26162655

26172656
/v1.0/users:
26182657
get:

0 commit comments

Comments
 (0)