PATCH
/
accounts
/
status
/
bulk
curl --request PATCH \
  --url https://api.gameboost.com/v1/accounts/status/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "accounts": [
    "{{accountId1}}",
    "{{accountId2}}"
  ],
  "status": "listed"
}'

Authorizations

Authorization
string
header
required

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

Body

application/json
accounts
integer[]
required
status
enum<string>
required
Available options:
listed,
draft

Response

200

Successfully updated the status of multiple accounts.