✨ New Gift Cards API Live Now - Beta!
curl --request GET \
--url https://api.gameboost.com/v2/item-offers/templates/{game} \
--header 'Authorization: Bearer <token>'{
"template": {
"game": "league-of-legends",
"title": "Sample Item Offer Title",
"slug": "(optional) sample-item-offer-slug",
"description": "Sample description of the item offer.",
"price": 10.99,
"stock": 100,
"min_quantity": 1,
"delivery_time": {
"duration": 30,
"unit": "minutes/hours/days"
},
"delivery_instructions": "(optional) Sample delivery instructions",
"image_urls": [
"http://example.com/sample-image.jpg"
],
"item_data": {}
}
}Retrieve a game-specific template with all required and optional fields for creating an item offer for the specified game.
curl --request GET \
--url https://api.gameboost.com/v2/item-offers/templates/{game} \
--header 'Authorization: Bearer <token>'{
"template": {
"game": "league-of-legends",
"title": "Sample Item Offer Title",
"slug": "(optional) sample-item-offer-slug",
"description": "Sample description of the item offer.",
"price": 10.99,
"stock": 100,
"min_quantity": 1,
"delivery_time": {
"duration": 30,
"unit": "minutes/hours/days"
},
"delivery_instructions": "(optional) Sample delivery instructions",
"image_urls": [
"http://example.com/sample-image.jpg"
],
"item_data": {}
}
}Documentation Index
Fetch the complete documentation index at: https://docs.gameboost.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The slug of the game. Can be retrieved from the list of games.
Item offer creation template for a specific game
Show child attributes
Was this page helpful?