| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- get:
- operationId: GetPersonalEvent
- summary: >-
- Get a single personal event. [OPTIONAL:Storage]
- description: >-
- **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
- requires a server running!
- security:
- - authRequired: []
- parameters:
- - $ref: ../../../../../components/parameters/me-event.yaml
- tags:
- - Me / Events
- responses:
- "200":
- $ref: ../../../../../components/responses/api/me/events/{event}/index-get-200.yaml
- "401":
- $ref: ../../../../../components/responses/401.yaml
- "404":
- $ref: ../../../../../components/responses/404.yaml
- put:
- operationId: PutPersonalEvent
- summary: >-
- Update a personal event. [OPTIONAL:Storage]
- description: >-
- **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
- requires a server running!
- security:
- - authRequired: []
- parameters:
- - $ref: ../../../../../components/parameters/me-event.yaml
- tags:
- - Me / Events
- requestBody:
- required: true
- content:
- application/json:
- schema:
- $ref: "../../../../../components/schemas/api/personal-event.yaml"
- responses:
- "200":
- $ref: ../../../../../components/responses/api/me/events/{event}/index-put-200.yaml
- "401":
- $ref: ../../../../../components/responses/401.yaml
- "404":
- $ref: ../../../../../components/responses/404.yaml
- delete:
- operationId: DeletePersonalEvent
- summary: >-
- Delete a personal event. [OPTIONAL:Storage]
- description: >-
- **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
- requires a server running!
- security:
- - authRequired: []
- parameters:
- - $ref: ../../../../../components/parameters/me-event.yaml
- tags:
- - Me / Events
- responses:
- "204":
- $ref: ../../../../../components/responses/204.yaml
- "401":
- $ref: ../../../../../components/responses/401.yaml
- "404":
- $ref: ../../../../../components/responses/404.yaml
|