✨ GameBoost API v2 is now live!
curl --request POST \
--url https://api.gameboost.com/v2/currency-orders/{currencyOrder}/complete \
--header 'Authorization: Bearer <token>'{
"data": {
"id": 123,
"currency_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,
"currency_unit": {
"slug": "<string>",
"currency_name": "<string>",
"name": "<string>",
"symbol": "<string>",
"multiplier": 123
},
"parameters": {},
"status": "pending",
"delivery_time": {
"duration": 123,
"unit": "minutes",
"format": "<string>",
"format_long": "<string>",
"seconds": 123
},
"credentials": {
"uid": 1234567890
},
"completion_proof_url": "<string>",
"price_eur": "<string>",
"price_usd": "<string>",
"unit_price_eur": "<string>",
"unit_price_usd": "<string>",
"created_at": 123,
"updated_at": 123
},
"message": "<string>",
"action": "<string>"
}Mark the currency order as completed after delivering the currency to the buyer. Buyer will be notified automatically.
curl --request POST \
--url https://api.gameboost.com/v2/currency-orders/{currencyOrder}/complete \
--header 'Authorization: Bearer <token>'{
"data": {
"id": 123,
"currency_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,
"currency_unit": {
"slug": "<string>",
"currency_name": "<string>",
"name": "<string>",
"symbol": "<string>",
"multiplier": 123
},
"parameters": {},
"status": "pending",
"delivery_time": {
"duration": 123,
"unit": "minutes",
"format": "<string>",
"format_long": "<string>",
"seconds": 123
},
"credentials": {
"uid": 1234567890
},
"completion_proof_url": "<string>",
"price_eur": "<string>",
"price_usd": "<string>",
"unit_price_eur": "<string>",
"unit_price_usd": "<string>",
"created_at": 123,
"updated_at": 123
},
"message": "<string>",
"action": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the currency order. Can be retrieved from the list of currency orders, or from the parent currency offer, or from webhooks.
Currency order completed successfully
Currency order object representing a purchase of in-game currency
Show child attributes
Unique identifier for the currency order
ID of the related currency 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 currency order
Detailed description of the currency being purchased
Amount of currency units ordered
Currency unit object representing a denomination of in-game currency
Show child attributes
URL-friendly identifier for the currency unit
Full name of the in-game currency (e.g., "Gold", "Credits")
Display name of this unit denomination
Symbol or abbreviation for the unit (e.g., "K", "M", "B")
Numeric multiplier for unit conversion (e.g., 1000 for thousands, 1000000 for millions)
Game-specific parameters such as server, realm, or faction
Current status of the currency 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
Account credentials provided by buyer for currency delivery
{ "uid": 1234567890 }URL to proof of order completion (screenshot or video)
Total order price in EUR currency
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 currency order was created
Unix timestamp of the last modification to the currency order
Success message
Action performed
Was this page helpful?