PATCH
/
item-offers
/
status
/
bulk
curl --request PATCH \
  --url https://api.gameboost.com/v1/item-offers/status/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "itemOffers": [
    "{{itemOfferId1}}",
    "{{itemOfferId2}}"
  ],
  "status": "archived"
}'

Authorizations

Authorization
string
header
required

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

Body

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

Response

200

Successfully updated the status of multiple item offers.