Get a single Splunk On-Call integration

Returns a single Splunk On-Call integration by ID.

GET https://uptime.betterstack.com/api/v2/splunk-on-call/{splunk_on_call_id}

URL parameters

splunk_on_call_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "17",
    "type": "splunk_on_call_integration",
    "attributes": {
      "name": "Test",
      "url": "https://[url]"
    }
  }
}

Example cURL

Example
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/splunk-on-call/17 \
  --header "Authorization: Bearer $TEAM_TOKEN"