v4

latestOpenAPI 3.1.02026-07-3196251302.5 KB
account

Refresh session token

post/v1/account.refreshSession

Headers

User-Agentstring
X-Forwarded-Forstring

Request body

$schemastring uri

A URL to the JSON Schema for this object.

refreshTokenstring required

The refresh token

Example request

{
  "$schema": "https://api.steamsets.com/schemas/V1AccountRefreshSessionRequestBody.json"
}

Response

OK

$schemastring uri

A URL to the JSON Schema for this object.

refreshExpiresAtstring date-time required

The expiration time of the refresh token

refreshTokenstring required

The refresh token

sessionExpiresAtstring date-time required

The expiration time of the session token

sessionTokenstring required

The session token

Example response

{
  "$schema": "https://api.steamsets.com/schemas/V1AccountRefreshSessionBody.json",
  "refreshExpiresAt": "2023-01-01T00:00:00Z",
  "sessionExpiresAt": "2023-01-01T00:00:00Z",
  "sessionToken": "auth_"
}