Skip to content

Stored only in your browser. Get one under Tokens.

Refresh a service-issued user access token

POST
/auth/token/refresh

Refresh a token previously obtained via POST /auth/token.
The caller must authenticate as the service that owns the token
(i.e. its PRN must equal the token's "aud" claim).

Authorizations

ApiKeyAuth
Type
API Key (header: Authorization)

Request Body

application/json
JSON
{
  
"token": "string"
}

Responses

OK

application/json
JSON
{
  
"expires_in": 0,
  
"redirect_uri": "string",
  
"scopes": "string",
  
"state": "string",
  
"token": "string",
  
"token_type": "string"
}

Playground

Authorization
Body

Samples

Powered by VitePress OpenAPI