You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-/v1/exercises/{id}/supplementary-files:- get:- summary: Get list of all exercise files for an exercise- description: Get list of all exercise files for an exercise- operationId: exerciseFilesPresenterActionGetExerciseFiles- parameters:- -- name: id- in: path- description: identification of exercise- required: True- schema:- type: string- pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$- nullable: False- responses:- 200:- description: Placeholder response
-/v1/exercises/{id}/attachment-files:- get:- summary: Get a list of all attachment files for an exercise [DEPRECATED]- description: Get a list of all attachment files for an exercise
[DEPRECATED]: attachment files were unified with exercise files
- operationId: exerciseFilesPresenterActionGetAttachmentFiles- deprecated: True- parameters:- -- name: id- in: path- description: identification of exercise- required: True- schema:- type: string- pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$- nullable: False- responses:- 200:- description: Placeholder response
-/v1/pipelines/{id}/supplementary-files:- post:- summary: Associate exercise files with a pipeline and upload them to remote file server- description: Associate exercise files with a pipeline and upload them to remote file server- operationId: pipelinesPresenterActionUploadExerciseFiles- parameters:- -- name: id- in: path- description: identification of pipeline- required: True- schema:- type: string- pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$- nullable: False- requestBody:- content:- application/json:- schema:- type: object- required:- -- files- properties:- files:- description: Identifiers of exercise files- type: string- nullable: True- responses:- 200:- description: Placeholder response
pipelines_presenter_action_get_exercise_files
-/v1/pipelines/{id}/supplementary-files:- get:- summary: Get list of all exercise files for a pipeline- description: Get list of all exercise files for a pipeline- operationId: pipelinesPresenterActionGetExerciseFiles- parameters:- -- name: id- in: path- description: identification of pipeline- required: True- schema:- type: string- pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$- nullable: False- responses:- 200:- description: Placeholder response
pipelines_presenter_action_delete_exercise_file
-/v1/pipelines/{id}/supplementary-files/{fileId}:- delete:- summary: Delete exercise file with given id- description: Delete exercise file with given id- operationId: pipelinesPresenterActionDeleteExerciseFile- parameters:- -- name: id- in: path- description: identification of pipeline- required: True- schema:- type: string- pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$- nullable: False- -- name: fileId- in: path- description: identification of file- required: True- schema:- type: string- pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$- nullable: False- responses:- 200:- description: Placeholder response
-/v1/worker-files/supplementary-file/{hash}:- get:- summary: Sends over an exercise file (a data file required by the tests).- description: Sends over an exercise file (a data file required by the tests).- operationId: workerFilesPresenterActionDownloadExerciseFile- parameters:- -- name: hash- in: path- description: identification of the exercise file- required: True- schema:- type: string- nullable: False- responses:- 200:- description: Placeholder response