Skip to content

Commit 2726f49

Browse files
authored
Fix typo in Get Workflow Steps API (#9745)
Signed-off-by: Daniel Widdis <[email protected]>
1 parent 1ac40dc commit 2726f49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_automating-configurations/api/get-workflow-steps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This API returns a list of workflow steps, including their required inputs, outp
3131

3232
```json
3333
GET /_plugins/_flow_framework/workflow/_steps
34-
GET /_plugins/_flow_framework/workflow/_step?workflow_step=<step_name>
34+
GET /_plugins/_flow_framework/workflow/_steps?workflow_step=<step_name>
3535
```
3636

3737
## Query parameters
@@ -54,7 +54,7 @@ GET /_plugins/_flow_framework/workflow/_steps
5454
To fetch specific workflow steps, pass the step names to the request as a query parameter:
5555

5656
```json
57-
GET /_plugins/_flow_framework/workflow/_step?workflow_step=create_connector,delete_model,deploy_model
57+
GET /_plugins/_flow_framework/workflow/_step?workflow_steps=create_connector,delete_model,deploy_model
5858
```
5959
{% include copy-curl.html %}
6060

@@ -73,4 +73,4 @@ To retrieve the template in JSON format, specify `Content-Type: application/json
7373

7474
```bash
7575
curl -XGET "http://localhost:9200/_plugins/_flow_framework/workflow/_steps" -H 'Content-Type: application/json'
76-
```
76+
```

0 commit comments

Comments
 (0)