POST /authentication/token/refresh

Request a valid access token using refresh token to continue using the API

Body Required

Provide refresh token to obtain a new valid access token

  • refresh string Required

    Refresh token

Responses

  • 200

    Successfully refreshed token

    Hide response attribute Show response attribute object
    • access string Required

      Valid access token

  • 400

    Invalid or missing request parameters

  • 401

    Invalid refresh token

POST /authentication/token/refresh
curl \
 -X POST https://cloud.sierraonetech.com/skyvision/integrations/v1/authentication/token/refresh \
 -H "Content-Type: application/json" \
 -d '{"refresh":"eyJhbGciOiJIUzI1..."}'
Request example
{
  "refresh": "eyJhbGciOiJIUzI1..."
}
Request examples
{
  "refresh": "eyJhbGciOiJIUzI1..."
}
Response examples (200)
{
  "access": "eyJhbGciOiJIUzI1..."
}
Response examples (200)
{
  "access": "eyJhbGciOiJIUzI1..."
}