Skip to main content
POST
/
v1
/
account.reconnectConnection
Reconnect OAuth connection
curl --request POST \
  --url https://api.steamsets.com/v1/account.reconnectConnection \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "code": "123456",
  "connectionId": "123456"
}'
{
  "$schema": "https://api.steamsets.com/schemas/V1AccountReconnectResponseBody.json"
}
This endpoint is not intended for public use and requires user authentication

Authentication Required

This endpoint requires an active user session and cannot be accessed via API keys. It’s designed for authenticated user interactions within the web application.

Authorizations

Authorization
string
header
required

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

Body

application/json
code
string
required

The code from the oauth2 provider to re-verify

Examples:

"123456"

connectionId
string
required

The connection id to reconnect

Examples:

"123456"

Response

OK

$schema
string<uri>

A URL to the JSON Schema for this object.

Examples:

"https://api.steamsets.com/schemas/V1AccountReconnectResponseBody.json"