SteamSets
ApiAccount

Upload images

POST
/account.v1.AccountService/UploadImages
/account.v1.AccountService/UploadImages

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

images
Required
arraynull

The images to upload

curl -X POST "https://api.steamsets.com/account.v1.AccountService/UploadImages" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "images": [
      {
        "data": "base64_encoded_image",
        "type": "avatar"
      }
    ]
  }'

No Content