# Get incoming webhook

Returns a single incoming webhook by ID.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/incoming-webhook/:incoming_webhook_id"
method = "GET"

[[path_param]]
name = "incoming_webhook_id"
description = "The ID of the incoming webhook 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 incoming webhook'''
body = '''{
  "data": {
    "id": "4",
    "type": "incoming_webhook",
    "attributes": {
      "name": "test",
      "created_at": "2023-01-23T14:18:07.408Z",
      "updated_at": "2023-01-23T14:18:07.408Z",
      "policy_id": null,
      "url": "https://uptime.betterstack.com/api/v1/incoming-webhook/[token]",
      "sample_query_string": null,
      "sample_headers": null,
      "sample_body": null,
      "team_name": "Testing",
      "call": false,
      "sms": false,
      "email": true,
      "push": true,
      "team_wait": 180,
      "recovery_period": 0,
      "paused": false,
      "started_rule_type": "unused",
      "acknowledged_rule_type": "unused",
      "resolved_rule_type": "unused",
      "started_rules": [],
      "acknowledged_rules": [],
      "resolved_rules": [],
      "cause_field": null,
      "started_alert_id_field": null,
      "acknowledged_alert_id_field": null,
      "resolved_alert_id_field": null,
      "other_started_fields": null,
      "other_acknowledged_fields": null,
      "other_resolved_fields": null
    }
  }
}'''

[/responses]

#### Example cURL 

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

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