List all Splunk On-Call integrations

Returns a list of all your Splunk On-Call integrations.

GET https://uptime.betterstack.com/api/v2/splunk-on-calls

Headers

Authorization
required string
200

Response body

{
  "data": [
    {
      "id": "17",
      "type": "splunk_on_call_integration",
      "attributes": {
        "name": "test",
        "url": "https://[url]"
      }
    }
  ],
  "pagination": {
    "first": "https://uptime.betterstack.com/api/v2/splunk-on-calls?page=1",
    "last": "https://uptime.betterstack.com/api/v2/splunk-on-calls?page=1",
    "prev": null,
    "next": null
  }
}

Example cURL

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