Squadcast is now SolarWinds Incident Response
For the complete documentation index, see llms.txt. This page is also available as Markdown.

Auth

Get Access Token

get
/oauth/access-token

Get access token to make authenticated HTTP requests to the Squadcast API. Send your refresh token (obtained from the Squadcast web application) in the X-Refresh-Token header.

Header parameters
X-Refresh-TokenstringRequired

(Required) Send your refresh token obtained from Squadcast web application.

Responses
200

The request has succeeded.

application/json
get/oauth/access-token
GET /oauth/access-token HTTP/1.1
Host: auth.squadcast.com
X-Refresh-Token: text
Accept: */*
{
  "data": {
    "access_token": "text",
    "expires_at": 1,
    "issued_at": 1,
    "refresh_token": "text",
    "type": "text"
  }
}

Last updated