From 371f6aebbaf5c1903189ebee8061af662379e6d5 Mon Sep 17 00:00:00 2001 From: stephb9959 Date: Mon, 11 Jan 2021 23:40:48 -0800 Subject: [PATCH] fixing stats --- api/openapi.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/api/openapi.yaml b/api/openapi.yaml index 4bcc7ef..605a0ec 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -623,6 +623,29 @@ paths: 403: $ref: '#/components/responses/Unauthorized' + /actions/{id}: + get: + description: Get simulation action details + tags: [ Actions ] + summary: Get the status of a given job + operationId: getActionsDetails + parameters: + - in: path + description: The name of the simulation we are interested in. + name: id + schema: + type: string + required: true + responses: + 200: + description: Contains the details of the given action + content: + application/json: + schema: + $ref: '#/components/schemas/ActionDetails' + 403: + $ref: '#/components/responses/Unauthorized' + components: responses: NotFound: