✨ GameBoost API v2 is now live!
curl --request POST \
--url https://api.gameboost.com/v2/item-offers/{itemOffer}/archive \
--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>"
}Archive an item offer removing it from active listings. Archived offers can be restored later if needed.
curl --request POST \
--url https://api.gameboost.com/v2/item-offers/{itemOffer}/archive \
--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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the item offer. Can be retrieved from the list of item offers.
Item offer action result
Item offer object representing in-game items for sale
Show child attributes
Unique identifier for the item offer
Display name for the item offer
URL-friendly identifier for the item offer
Detailed description of the items and what is included
Game-specific item parameters such as server, region, or item attributes
Current status of the item offer
draft, listed, archived Delivery time object representing expected delivery duration
Show child attributes
Numeric value representing the delivery time
Time unit for the duration (minutes, hours, days)
minutes, hours, days Human-readable delivery time (e.g., "2 hr")
Extended format delivery time (e.g., "2 hours")
Total delivery time converted to seconds
Special instructions for item delivery, provided to buyer after purchase
Available quantity of items in stock
Minimum quantity that can be purchased in a single order
Price per unit in EUR currency
Price per unit converted to USD using current exchange rates
Total number of times this item offer has been viewed
Array of image URLs showcasing the items
Unix timestamp when the item offer was created
Unix timestamp of the last modification to the item offer
Unix timestamp when the item offer was made publicly available
Action result message
Action performed
Previous status before action
Was this page helpful?