CARVIEW |
Select Language
HTTP/2 200
date: Sat, 19 Jul 2025 03:29:56 GMT
server: Apache
vary: Accept-Encoding
x-xss-protection: 0
content-type: text/html; charset=utf-8
strict-transport-security: max-age=31536000; includeSubDomains; preload
referrer-policy: no-referrer
x-slack-unique-id: aHsRNMU7apdu1lNhU7fiPAAAABk
x-slack-backend: r
x-frame-options: SAMEORIGIN
set-cookie: utm=%7B%7D; expires=Sat, 02-Aug-2025 03:29:56 GMT; Max-Age=1209600; path=/; domain=.slack.com; secure; SameSite=None
set-cookie: b=86ad7ef1a8abc0509b8b822af5db9f6b; expires=Thu, 19-Jul-2035 03:29:56 GMT; Max-Age=315532800; path=/; domain=.slack.com; secure; SameSite=None
set-cookie: x=86ad7ef1a8abc0509b8b822af5db9f6b.1752895796; expires=Sat, 19-Jul-2025 03:44:56 GMT; Max-Age=900; path=/; domain=.slack.com; secure; SameSite=None
via: 1.1 slack-prod.tinyspeck.com, envoy-www-iad-bbxioewy,envoy-edge-bom-zeutsmql
content-encoding: gzip
content-length: 27425
x-envoy-attempt-count: 1
x-envoy-upstream-service-time: 261
x-backend: main_normal main_canary_with_overflow main_control_with_overflow
x-server: slack-www-hhvm-main-iad-yvox
x-slack-shared-secret-outcome: no-match
x-edge-backend: envoy-www
x-slack-edge-shared-secret-outcome: no-match
Workflows: workflow_step_edit payload | Slack
The Slack developer docs are moving! We've been working hard at building out a new docs experience at docs.slack.dev β now in beta! You can start using the new docs today, but we'll keep the content on both sites up to date during the transition.
Workflows: workflow_step_edit payload
An interaction payload of type workflow_step_edit
. Sent to your interactive request URL in an HTTP POST once a user adds your step to a workflow in Workflow Builder.
Arguments
Field | Type | Description |
---|---|---|
type |
String | Will always be workflow_step_edit |
team |
Object | Team object containing the id and domain of the workspace from which this interaction occurred |
user |
Object | User object containing the id and name of the user who submitted the modal |
callback_id |
String | The callback_id of your step defined in your app configuration |
trigger_id |
String | A trigger id which can be used to open up a modal |
workflow_step |
Object | A workflow_step object containing the workflow_id and step_id of this step. |
Example
{
"type": "workflow_step_edit",
"action_ts": "1583365953.106277",
"team": {
"id": "TXXXXXX",
"domain": "workspace-domain",
"enterprise_id": "EXXXXXX",
"enterprise_name": "Enterprise Grid name"
},
"user": {
"id": "WXXXXXX",
"name": "Bruce Wayne",
"team_id": "TXXXXXX"
},
"callback_id": "your_callback_id",
"trigger_id": "39718531891.19077474947.fd5f3dff6299006cbbfe124ff5902cff",
"workflow_step": {
"workflow_id": "302798802677412566",
"step_id": "4da7dbc9-7961-4eb9-857c-c96397e5398b",
"inputs": {
"strings": {
"value": [
":pizza:",
":hamburger:",
":carrot:",
":burrito:",
":taco:"
]
}
},
"outputs": [
{
"name": "random_string",
"type": "text",
"label": "Random String"
}
]
}
}