# Get outgoing webhook 

Returns a single Outgoing Webhook integration by ID.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/outgoing-webhooks/{outgoing_webhook_id}"
method = "GET"

[[path_param]]
name = "outgoing_webhook_id"
description = "The ID of the Outgoing Webhook 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 Outgoing Webhook integration'''
body = '''{
  "data": {
    "id": "16",
    "type": "outgoing_webhook",
    "attributes": {
      "name": "test",
      "url": "https://example.com",
      "trigger_type": "on_call_change",
      "team_name": "My team"
    },
    "relationships": {
      "custom_webhook_template": {
        "data": null
      }
    }
  },
  "included": []
}'''

[/responses]

#### Example cURL

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

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