Slack Notification from Servicenow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2024 10:24 AM
Hello Experts,
I need help with sending Slack notification from ServiceNow.
The requirement is to send Slack notification to the host when a pre-registered visitor checks in for their visit at a kiosk
Thanks in advance

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2024 11:02 AM - edited 08-13-2024 11:05 AM
You can send messages to Slack a couple ways:
- Create a REST Message using the Slack API (requires more working knowledge of the API)
or - Install the Slack Spoke for Integration Hub (easier, but must be licensed for Integration Hub Starter).
After setting up your integration with Slack using one of the above methods, use either a business rule or a flow to trigger the event/message when the visitor checks in.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2024 07:28 AM
Thanks Ronald for your suggestion. I am using the Slack Spoke to trigger outbound message to the Host informing them about the visitor check in with an option to 'Reject' the check in request. Could you please advice how can we receive the response back from Slack once the host/slack user clicks on Reject button
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2024 07:43 AM
@Karishma Mehta1 Outbound message to slack you may use the spoke like you mentioned. But to get a response of a reject action from Slack, you need to configure a flow from slack to call a custom endpoint in ServiceNow, or have a listener for slack webhook events.
----First Request (Outbound from ServiceNow to Slack)----
1. Visitor checks in to ServiceNow
2. ServiceNow flow runs and sends a message to Slack with approval
3. ServiceNow gets a 200 response from Slack that the message has been received
---Second Request (Inbound from Slack to ServiceNow)---
1. Host approves/rejects in Slack
2. Slack sends approve/reject event to ServiceNow via Slack automation
3. ServiceNow processes the approval
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2024 07:56 AM
Thank you Chris for your response.
How can we implement the flow in Slack for sending the rejection from Slack in ServiceNow. What configurations do we have to in Slack and in ServiceNow for this ?
I have done the following so far: