✨ GameBoost API v2 is now live!
curl --request POST \
--url https://api.gameboost.com/v2/item-orders/{itemOrder}/complete \
--header 'Authorization: Bearer <token>'{
"data": {
"id": 123,
"item_offer_id": 123,
"game": {
"id": 123,
"name": "<string>",
"slug": "<string>"
},
"buyer": {
"id": 123,
"username": "<string>"
},
"rating": {
"id": 123,
"labels": [
"<string>"
],
"rating": 123,
"comment": "<string>",
"created_at": 123,
"updated_at": 123
},
"title": "<string>",
"description": "<string>",
"quantity": 123,
"parameters": {},
"status": "pending",
"delivery_time": {
"duration": 123,
"unit": "minutes",
"format": "<string>",
"format_long": "<string>",
"seconds": 123
},
"price_eur": "<string>",
"price_usd": "<string>",
"unit_price_eur": "<string>",
"unit_price_usd": "<string>",
"created_at": 123,
"updated_at": 123,
"purchased_at": 123,
"completed_at": 123,
"refunded_at": 123
},
"message": "<string>",
"action": "<string>"
}Mark the item order as completed after delivering the items to the buyer. Buyer will be notified automatically.
curl --request POST \
--url https://api.gameboost.com/v2/item-orders/{itemOrder}/complete \
--header 'Authorization: Bearer <token>'{
"data": {
"id": 123,
"item_offer_id": 123,
"game": {
"id": 123,
"name": "<string>",
"slug": "<string>"
},
"buyer": {
"id": 123,
"username": "<string>"
},
"rating": {
"id": 123,
"labels": [
"<string>"
],
"rating": 123,
"comment": "<string>",
"created_at": 123,
"updated_at": 123
},
"title": "<string>",
"description": "<string>",
"quantity": 123,
"parameters": {},
"status": "pending",
"delivery_time": {
"duration": 123,
"unit": "minutes",
"format": "<string>",
"format_long": "<string>",
"seconds": 123
},
"price_eur": "<string>",
"price_usd": "<string>",
"unit_price_eur": "<string>",
"unit_price_usd": "<string>",
"created_at": 123,
"updated_at": 123,
"purchased_at": 123,
"completed_at": 123,
"refunded_at": 123
},
"message": "<string>",
"action": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the item order. Can be retrieved from the list of item orders, or from the parent item offer, or from webhooks.
Item order completed successfully
Item order object representing a purchase of in-game items
Show child attributes
Unique identifier for the item order
ID of the related item offer
Rating object representing feedback from a buyer
Show child attributes
Unique identifier for the rating
Array of predefined label names that categorize the rating feedback
Rating value (0=negative, 1=positive)
Rating comment text
Unix timestamp when the rating was created
Unix timestamp of the last modification to the rating
Display title for the item order
Detailed description of the items being purchased
Number of item units ordered
Game-specific parameters such as server, region, or delivery preferences
Current status of the item order
pending, in_delivery, delivered, refunded 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
Total order price in EUR
Total order price converted to USD using current exchange rates
Price per unit in EUR
Price per unit in converted to USD using current exchange rates
Unix timestamp when the item order was created
Unix timestamp of the last modification to the item order
Unix timestamp when the item order was purchased
Unix timestamp when the item order was successfully delivered
Unix timestamp when the item order was refunded
Success message
Action performed
Was this page helpful?