Explore documentation

Get a single Outgoing Webhook integration

Returns a single Outgoing Webhook integration by ID.

GET https://uptime.betterstack.com/api/v2/outgoing-webhooks/{outgoing_webhook_id}

URL parameters

outgoing_webhook_id
required string

Headers

Authorization
required string
200

Response 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": [

  ]
}

Example cURL

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