CARVIEW |
Select Language
HTTP/2 200
date: Thu, 24 Jul 2025 23:03:40 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: aIK7zNRhgF9kfIMRxrt-LgAAEDs
x-slack-backend: r
x-frame-options: SAMEORIGIN
set-cookie: utm=%7B%7D; expires=Thu, 07-Aug-2025 23:03:40 GMT; Max-Age=1209600; path=/; domain=.slack.com; secure; SameSite=None
set-cookie: b=2f22811bc4f2fa8117c1350828e6ab0a; expires=Tue, 24-Jul-2035 23:03:40 GMT; Max-Age=315532800; path=/; domain=.slack.com; secure; SameSite=None
set-cookie: x=2f22811bc4f2fa8117c1350828e6ab0a.1753398220; expires=Thu, 24-Jul-2025 23:18:40 GMT; Max-Age=900; path=/; domain=.slack.com; secure; SameSite=None
via: 1.1 slack-prod.tinyspeck.com, envoy-www-iad-rwfbyvbm,envoy-edge-bom-dwkqfjaa
content-encoding: gzip
content-length: 29813
x-envoy-attempt-count: 1
x-envoy-upstream-service-time: 407
x-backend: main_normal main_canary_with_overflow main_control_with_overflow
x-server: slack-www-hhvm-main-iad-rosh
x-slack-shared-secret-outcome: no-match
x-edge-backend: envoy-www
timing-allow-origin: *
x-slack-edge-shared-secret-outcome: no-match
workflow_step_execute event | Slack
A workflow step supported by your app should execute
Facts
Works with
Events API
Steps from Apps is deprecated
We're retiring all Slack app functionality around Steps from Apps in September 2024. Learn more.
{
"token": "XXYYZZ",
"team_id": "TXXXXXXXX",
"enterprise_id": "EXXXXXXXX",
"api_app_id": "AXXXXXXXX",
"event": {
"type": "workflow_step_execute",
"callback_id": "open_ticket",
"workflow_step": {
"workflow_step_execute_id": "1036669284371.19077474947.c94bcf942e047298d21f89faf24f1326",
"inputs": {
"title": "Requesting help with my computer",
"submitter": "W1234567890"
...
},
"outputs": [
{
"type": "text",
"name": "title",
"label": "Title of Ticket"
},
{
"type": "text",
"name": "id",
"label": "Ticket ID"
}
...
]
}
},
"type": "event_callback",
"event_id": "EvXXXXXXXX",
"event_time": 1234567890
}
This event notifies you when a workflow step supported by your app has been started.
The example above shows the complete Events API payload, including the event wrapper.
team_id
indicates which workspace the Slack app is installed on.api_app_id
indicates the id of the app.event.callback_id
indicates the specific workflow step type.event.workflow_step.workfklow_step_execute_id
is used in the callback to complete the workflow step.event.workflow_step.inputs
provides the step's required inputs to be used by your app.event.workflow_step.outputs
specifies the steps's expected outputs to be set by your app when the step completes.
When an event occurs, we will send an HTTP POST request to your Request URL. The outer payload is uniform across all Events API methods, and contains fields like team_id
and event
. Learn more