Updates a game in the project by ID.
project_id required | integer Project ID. You can find this parameter in your Publisher Account next to the name of the project. Example: 44056 |
item_id required | string Item ID. Example: 656 |
Object with game data.
sku required | string [ 1 .. 255 ] characters ^[a-zA-Z0-9_\\-–.]*$ Unique item ID. The SKU may only contain lowercase Latin alphanumeric characters, periods, dashes, and underscores. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
required | object Object with localizations for item's name. Two-letter lowercase language code. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
required | Array of objects Game keys for different DRMs. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Object with localizations for item's description. Two-letter lowercase language code. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Object with localizations for long description of item. Two-letter lowercase language code. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
image_url | string Image URL. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects Game additional assets such as screenshots, gameplay video, etc. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
order | integer Game order priority in the list. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects Groups the item belongs to. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects <= 20 items List of attributes. Attention. You can't specify more than 20 attributes for the item. Any attempts to exceed the limit result in an error.
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array (<= 20 items)
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
is_enabled | boolean If disabled, item cannot be purchased and accessed through inventory. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
is_show_in_store | boolean Item is available for purchase. |
Game was successfully updated.
Basic authentication not passed or wrong. Make sure you used basic authentication or correct credentials.
Game not found.
Invalid request.
{- "sku": "game_1",
- "name": {
- "en-US": "Game name",
- "ru-RU": "Название игры"
}, - "description": {
- "en-US": "Game description",
- "ru-RU": "Краткое описание игры"
}, - "long_description": {
- "en-US": "Game long description",
- "ru-RU": "Полное описание игры"
}, - "media_list": [
], - "groups": [
- "new_games"
], - "is_enabled": true,
- "is_show_in_store": true,
- "unit_items": [
- {
- "sku": "game_key_1",
- "name": {
- "en-US": "Game key name",
- "ru-RU": "Название игрового ключа"
}, - "drm_sku": "steam",
- "prices": [
- {
- "amount": 35.5,
- "currency": "USD",
- "is_enabled": true,
- "is_default": true
}
], - "vc_prices": [
- {
- "amount": 35.5,
- "sku": "gold",
- "is_enabled": true,
- "is_default": true
}
], - "is_enabled": true,
- "is_free": false,
- "is_show_in_store": true,
- "pre_order": {
- "release_date": "2020-08-11T10:00:00+03:00",
- "is_enabled": true,
- "description": "Some description"
}, - "regions": [
- {
- "id": 12
}, - {
- "id": 64
}
], - "limits": {
- "per_user": {
- "total": 5
}, - "per_item": {
- "total": 10000,
- "available": 5000,
- "reserved": 500,
- "sold": 4500
}
}, - "periods": [
- {
- "date_from": "2020-08-11T10:00:00+03:00",
- "date_until": "2020-08-11T20:00:00+03:00"
}
]
}
]
}
{- "statusCode": 401,
- "errorCode": 1020,
- "errorMessage": "[0401-1020]: Error in Authentication method occurred"
}