SlackBlockBuilder
Slack Pack.#
This Script is part of theSupported versions
Supported Cortex XSOAR versions: 6.2.0 and later.
SlackBlockBuilder will format a given Slack block into a format readable by the SlackV3 integration. The script will also send the block to the given destination. Make sure to mark Trust any certificate and fill the XSOAR API Key integration parameters if you want to get a response to the incident context.
The Slack Block Kit Builder can be found here.
#
Script DataName | Description |
---|---|
Script Type | python3 |
Tags | slack |
Cortex XSOAR Version | 6.2.0 |
#
Use CaseThis automation allows you to send a survey to users (including external to Cortex XSOAR) via Slack, and have them respond and reflect the answer back to Cortex XSOAR. Within the survey, you can use all the different input types that are available via the Slack Block Kit, including buttons, text fields, datepickers, radio buttons, multi select, and more.
See this blog post for more detailed use case information and ideas.
#
DependenciesRequires an instance of the Slack v3 integration.
This script uses the following commands and scripts.
- send-notification
#
Setup RequirementsIn order to use SlackBlockBuilder, you must enter an API key created by a default admin user (username admin by default) into the Slack v3 integration instance settings. The API key must be generated by default admin, not just any user.
Ensure the "Long running instance" checkbox is checked in the Slack v3 integration instance settings.
#
InputsArgument Name | Description |
---|---|
blocks_url | The URL copied from Slack's Block Builder. |
list_name | The name of the Cortex XSOAR list to use as the block's input. |
user | The Slack user to which to send the message. Can be either an email address or a Slack user name. |
channel | The Slack channel to send the message to. |
channel_id | The Slack channel ID to send the message to. |
task | The task to close with the reply. If empty, then no playbook tasks will be closed. |
replyEntriesTag | Tag to add to email reply entries. |
persistent | Indicates whether to use one-time entitlement or persistent entitlement. |
reply | The reply to send to the user. Use the templates {user} and {response} to incorporate these in the reply. (i.e., "Thank you {user}. You have answered {response}.") |
lifetime | Time until the question expires. For example - 1 day. When it expires, a default response is sent. |
defaultResponse | Default response in case the question expires. |
slackInstance | The instance of SlackV3 this script should use. |
thread_id | The ID of the thread to which to reply. Can be retrieved from a previous send-notification command. |
#
OutputsPath | Description | Type |
---|---|---|
SlackBlockState | The State of the response from the user will be stored under this context path. | unknown |
Note Make sure to configure the "XSOAR API Key" instance parameter in the "Slack v3" integration.
To get the API Key:
- Go to Settings -> API keys.
- Click Get Your Key.
- Type a name for the key and click Generate key.
- Copy and paste the key in the instance parameter.
#
Command Example using blocks_url#
Human Readable Output using blocks_url#
Command Example using list_name#
Human Readable Output using list_name#
TroubleshootingIssue: The survey message is not sent to Slack.
Troubleshooting: Test the send-notification
command on its own to verify it is working correctly. This will provide a more specific error message if there is an issue. Note that the Slack API bot you set up for the Slack v3 integration needs to be added to any channels you want to send SlackBlockBuilder surveys to.
Verify your Slack blocks payload is valid. Try simplifying the payload. Test with a simple dummy payload like the following:
Issue: The survey is sent to Slack and submitted successfully, but the response does not show up in context data in Cortex XSOAR.
Troubleshooting: The most likely cause is that there is no API key entered into the Slack v3 integration instance settings, or the API key was not created by default admin. Ensure an API key created by a default admin user is entered into the Slack v3 integration instance settings. Also, make sure to mark the Trust any certificate (not secure) integration parameter.
Issue: The survey is sent to Slack successfully, but clicking the Submit button in Slack does nothing. No response is returned to Cortex XSOAR. There may be a ⚠️ icon next to the Submit button in Slack.
Troubleshooting: Ensure the "Long running instance" checkbox is checked in the Slack v3 integration instance settings.
Issue: Migrating to pack version 3.3.0.
Troubleshooting: # Implementation Guide for Changes in SlackV3 for XSOAR (Version 3.3.0)
#
1. Review and Identify Affected Playbooks- Identify all playbooks currently utilizing the SlackBlockBuilder script or its derivatives.
#
2. Implement Conditional Tasks- Introduce a conditional task in your playbooks that waits for the expected response.
- Configure the task to proceed once the response is received.
GetSlackBlockBuilderResponse
Script#
3. Integrate the - After receiving the response and closing the conditional task, initiate a new task that runs the
ParseSlackResponse
script.