Skip to content

Commit

Permalink
Automated commit by github action: 7143377345
Browse files Browse the repository at this point in the history
  • Loading branch information
developer-relations-sp committed Dec 8, 2023
1 parent fd8ab58 commit e0cbb55
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
2 changes: 2 additions & 0 deletions static/api-specs/nerm/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ paths:
$ref: "./paths/workflow_actions/update_profile_action.yaml"
/workflow_actions/username_password_actions:
$ref: "./paths/workflow_actions/username_password_action.yaml"
/workflow_actions:
$ref: "./paths/workflow_actions/workflow_action.yaml"
# Workflow Sessions
/workflow_sessions:
$ref: "./paths/workflow_sessions.yaml"
Expand Down
3 changes: 2 additions & 1 deletion static/api-specs/nerm/parameters/query/workflow_id.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ description: Workflow ID for filtering
required: false
schema:
type: string
format: uuid
format: uuid
example: bba9cfb2-96c1-4acb-ac79-a21732527265
15 changes: 15 additions & 0 deletions static/api-specs/nerm/paths/workflow_actions/workflow_action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
get:
summary: Get Workflow Actions
operationId: getWorkflowActions
description: This endpoint can retrieve workflow actions
tags:
- workflow actions
parameters:
- $ref: "../../parameters/query/workflow_id.yaml"
responses:
'200':
$ref: "../../responses/WorkflowActions.yaml"
'400':
$ref: "../../responses/400.yaml"
'500':
$ref: "../../responses/500.yaml"
9 changes: 9 additions & 0 deletions static/api-specs/nerm/responses/WorkflowActions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
description: Expected response to a valid request
content:
application/json:
schema:
type: object
properties:
workflow_actions:
type: object
$ref: '../schemas/GET/WorkflowAction.yaml'

0 comments on commit e0cbb55

Please sign in to comment.