SteamSets
ApiAccount

Update image

POST
/account.v1.AccountService/UpdateImage
/account.v1.AccountService/UpdateImage

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

active
Required
boolean

Whether the image is active or not, only one of each type can be active

imageId
Required
string

The image id to update

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

OK

{
  "key": "api_123"
}