Skip to main content
POST
/
v2
/
item-offers
/
{itemOffer}
/
list
List an item offer
curl --request POST \
  --url https://api.gameboost.com/v2/item-offers/{itemOffer}/list \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "game": {
      "id": 123,
      "name": "<string>",
      "slug": "<string>"
    },
    "title": "<string>",
    "slug": "<string>",
    "description": "<string>",
    "parameters": {},
    "status": "draft",
    "delivery_time": {
      "duration": 123,
      "unit": "minutes",
      "format": "<string>",
      "format_long": "<string>",
      "seconds": 123
    },
    "delivery_instructions": "<string>",
    "stock": 123,
    "min_quantity": 123,
    "price_eur": "<string>",
    "price_usd": "<string>",
    "views": 123,
    "image_urls": [
      "<string>"
    ],
    "created_at": 123,
    "updated_at": 123,
    "listed_at": 123
  },
  "message": "<string>",
  "action": "<string>",
  "previous_status": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

itemOffer
string
required

The ID of the item offer. Can be retrieved from the list of item offers.

Response

Item offer action result

data
object

Item offer object representing in-game items for sale

message
string

Action result message

action
string

Action performed

previous_status
string | null

Previous status before action

I