# Get Slack integration

Returns a single Slack integration by ID.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/slack-integrations/{slack_integration_id}"
method = "GET"

[[path_param]]
name = "slack_integration_id"
description = "The ID of the Slack integration you want to get."
required = true
type = "string"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 200
description = '''Returns a single Slack integration'''
body = '''{
  "data": {
    "id": "37",
    "type": "slack_integration",
    "attributes": {
      "slack_team_id": "T04UQ7K4QMB",
      "slack_team_name": "My Slack integration",
      "slack_channel_id": "C07Q2KF20EU",
      "slack_channel_name": "#better-stack-incidents",
      "slack_status": "active",
      "integration_type": "channel",
      "on_call_notifications": true,
      "team_name": "Testing",
      "alert_options": [
        {
          "type": "policy",
          "id": 73,
          "name": "High severity policy",
          "team_id": 7,
          "team_name": "My team"
        },
        {
          "type": "team",
          "id": 7,
          "name": "My team",
          "call": false,
          "sms": false,
          "email": true,
          "push": false
        }
      ]
    }
  }
}
'''

[/responses]

#### Example cURL 

```shell
[label Example]
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/slack-integrations/37 \
  --header "Authorization: Bearer $TOKEN"
```

[info]
#### Looking for the details of a specific parameter?
Explore [the list of all Slack integration API parameters](https://betterstack.com/docs/uptime/api/slack-integrations-response-params/)
[/info]