Skip to main content
POST
/
v1
/
account.refreshSession
Refresh session token
curl --request POST \
  --url https://api.steamsets.com/v1/account.refreshSession \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "refreshToken": "<string>"
}
'
{
  "refreshExpiresAt": "2023-11-07T05:31:56Z",
  "refreshToken": "<string>",
  "sessionExpiresAt": "2023-11-07T05:31:56Z",
  "sessionToken": "<string>",
  "$schema": "<string>"
}
This endpoint is publicly accessible without authentication

Public Access

This endpoint does not require authentication and can be accessed by anyone with a valid refresh token. It’s used to renew expired session tokens.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

User-Agent
string
X-Forwarded-For
string

Body

application/json
refreshToken
string
required

The refresh token

Response

OK

refreshExpiresAt
string<date-time>
required

The expiration time of the refresh token

refreshToken
string
required

The refresh token

sessionExpiresAt
string<date-time>
required

The expiration time of the session token

sessionToken
string
required

The session token

$schema
string<uri>

A URL to the JSON Schema for this object.