index.yaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. get:
  2. operationId: GetPersonalEvent
  3. summary: >-
  4. Get a single personal event. [OPTIONAL:Storage]
  5. description: >-
  6. **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
  7. requires a server running!
  8. security:
  9. - authRequired: []
  10. parameters:
  11. - $ref: ../../../../../components/parameters/me-event.yaml
  12. tags:
  13. - Me / Events
  14. responses:
  15. "200":
  16. $ref: ../../../../../components/responses/api/me/events/{event}/index-get-200.yaml
  17. "401":
  18. $ref: ../../../../../components/responses/401.yaml
  19. "404":
  20. $ref: ../../../../../components/responses/404.yaml
  21. put:
  22. operationId: PutPersonalEvent
  23. summary: >-
  24. Update a personal event. [OPTIONAL:Storage]
  25. description: >-
  26. **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
  27. requires a server running!
  28. security:
  29. - authRequired: []
  30. parameters:
  31. - $ref: ../../../../../components/parameters/me-event.yaml
  32. tags:
  33. - Me / Events
  34. requestBody:
  35. required: true
  36. content:
  37. application/json:
  38. schema:
  39. $ref: "../../../../../components/schemas/api/personal-event.yaml"
  40. responses:
  41. "200":
  42. $ref: ../../../../../components/responses/api/me/events/{event}/index-put-200.yaml
  43. "401":
  44. $ref: ../../../../../components/responses/401.yaml
  45. "404":
  46. $ref: ../../../../../components/responses/404.yaml
  47. delete:
  48. operationId: DeletePersonalEvent
  49. summary: >-
  50. Delete a personal event. [OPTIONAL:Storage]
  51. description: >-
  52. **THIS IS AN OPTIONAL ENDPOINT**: This endpoint might not be implemented, as it
  53. requires a server running!
  54. security:
  55. - authRequired: []
  56. parameters:
  57. - $ref: ../../../../../components/parameters/me-event.yaml
  58. tags:
  59. - Me / Events
  60. responses:
  61. "204":
  62. $ref: ../../../../../components/responses/204.yaml
  63. "401":
  64. $ref: ../../../../../components/responses/401.yaml
  65. "404":
  66. $ref: ../../../../../components/responses/404.yaml