Skip to main content

functions.workflows.steps.list method

Welcome to the new home of Slack developer docs!

We're still building and not all features are available quite yet. Enjoy this peek into the future!

Not ready for the future? Return to the past at api.slack.com.

Usage info

This method is used to list steps in a workflow that use a specific function. Most commonly, it's used to find steps that use the OpenForm Slack function, so that form responses may be exported using the functions.workflows.steps.responses.export method. The function_id of OpenForm will always be Fn010N.

To identify the workflow you want to list steps from, you can use a workflow ID:

	{
"workflow_id": "WfABC123",
"function_id": "Fn010N",
}

or the app ID that contains the workflow and the workflow reference:

	{
"workflow_app_id": "AABC123",
"workflow": "#/workflows/my_workflow_callback_id",
"function_id": "Fn010N",
}

Response