SteamSets
ApiAccount

Update Connection

POST
/account.v1.AccountService/UpdateConnection
/account.v1.AccountService/UpdateConnection

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

connectionId
Required
string

The connection id to update

hidden
Required
boolean

Whether the connection should be hidden or not

curl -X POST "https://api.steamsets.com/account.v1.AccountService/UpdateConnection" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "connectionId": "123456",
    "hidden": true
  }'

OK

{}