Go back
S

Slack

v1 · 2 endpoints

Slack (2)

API Explorer

- credits
ColdIQ
APIs→Slack
Ctrl + O
Switch provider
Ctrl + P
Switch endpoint
API docs
GEThttps://api.coldiq.com/dashboard/slack/connection

Shows the bound Slack workspace, who connected it and when. Any member of the team can read it. Returns `connected: fals…

Authentication

No API key - create one in the dashboard

No parameters for this endpoint.

import requests

url = "https://api.coldiq.com/dashboard/slack/connection"

headers = {
    "Authorization": "Bearer ",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
print(response.json())