|
|
@@ -0,0 +1,65 @@
|
|
|
+get:
|
|
|
+ operationId: GetPersonalEvent
|
|
|
+ summary: >-
|
|
|
+ Get a single personal event. [OPTIONAL]
|
|
|
+ description: >-
|
|
|
+ **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
|
|
|
+ requires a server running!
|
|
|
+ security: []
|
|
|
+ parameters:
|
|
|
+ - $ref: ../../../../../components/parameters/me-event.yaml
|
|
|
+ tags:
|
|
|
+ - Me/Personal Event
|
|
|
+ responses:
|
|
|
+ "200":
|
|
|
+ $ref: ../../../../../components/responses/api/me/personal-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]
|
|
|
+ description: >-
|
|
|
+ **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
|
|
|
+ requires a server running!
|
|
|
+ security: []
|
|
|
+ parameters:
|
|
|
+ - $ref: ../../../../../components/parameters/me-event.yaml
|
|
|
+ tags:
|
|
|
+ - Me/Personal Event
|
|
|
+ requestBody:
|
|
|
+ required: true
|
|
|
+ content:
|
|
|
+ application/json:
|
|
|
+ schema:
|
|
|
+ $ref: "../../../../../components/schemas/api/personal-event.yaml"
|
|
|
+ responses:
|
|
|
+ "200":
|
|
|
+ $ref: ../../../../../components/responses/api/me/personal-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]
|
|
|
+ description: >-
|
|
|
+ **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
|
|
|
+ requires a server running!
|
|
|
+ security: []
|
|
|
+ parameters:
|
|
|
+ - $ref: ../../../../../components/parameters/me-event.yaml
|
|
|
+ tags:
|
|
|
+ - Me/Personal Event
|
|
|
+ responses:
|
|
|
+ "204":
|
|
|
+ $ref: ../../../../../components/responses/204.yaml
|
|
|
+ "401":
|
|
|
+ $ref: ../../../../../components/responses/401.yaml
|
|
|
+ "404":
|
|
|
+ $ref: ../../../../../components/responses/404.yaml
|