|
|
@@ -0,0 +1,68 @@
|
|
|
+get:
|
|
|
+ operationId: GetPlan
|
|
|
+ summary: >-
|
|
|
+ Get a single plan. [OPTIONAL]
|
|
|
+ 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-plan.yaml
|
|
|
+ tags:
|
|
|
+ - Me/Plans
|
|
|
+ responses:
|
|
|
+ "200":
|
|
|
+ $ref: ../../../../../components/responses/api/me/plans/{plan}/index-get-200.yaml
|
|
|
+ "401":
|
|
|
+ $ref: ../../../../../components/responses/401.yaml
|
|
|
+ "404":
|
|
|
+ $ref: ../../../../../components/responses/404.yaml
|
|
|
+
|
|
|
+put:
|
|
|
+ operationId: PutPlan
|
|
|
+ summary: >-
|
|
|
+ Update a personal plan. [OPTIONAL]
|
|
|
+ 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-plan.yaml
|
|
|
+ tags:
|
|
|
+ - Me/Plans
|
|
|
+ requestBody:
|
|
|
+ required: true
|
|
|
+ content:
|
|
|
+ application/json:
|
|
|
+ schema:
|
|
|
+ $ref: "../../../../../components/schemas/api/plan.yaml"
|
|
|
+ responses:
|
|
|
+ "200":
|
|
|
+ $ref: ../../../../../components/responses/api/me/plans/{plan}/index-put-200.yaml
|
|
|
+ "401":
|
|
|
+ $ref: ../../../../../components/responses/401.yaml
|
|
|
+ "404":
|
|
|
+ $ref: ../../../../../components/responses/404.yaml
|
|
|
+
|
|
|
+delete:
|
|
|
+ operationId: DeletePlan
|
|
|
+ summary: >-
|
|
|
+ Delete a personal plan. [OPTIONAL]
|
|
|
+ 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-plan.yaml
|
|
|
+ tags:
|
|
|
+ - Me/Plans
|
|
|
+ responses:
|
|
|
+ "204":
|
|
|
+ $ref: ../../../../../components/responses/204.yaml
|
|
|
+ "401":
|
|
|
+ $ref: ../../../../../components/responses/401.yaml
|
|
|
+ "404":
|
|
|
+ $ref: ../../../../../components/responses/404.yaml
|