Xsolla-logoXsolla Developers
前往发布商帐户

将游戏加入到目录Client-side

get/v2/project/{project_id}/items/game/sku/{item_sku}

Gets a game for the catalog.

Note

This endpoint, accessible without authorization, returns generic data. However, authorization enriches the response with user-specific details for a personalized result, such as available user limits and promotions.
SecurityXsollaLoginUserJWT
Request
path Parameters
project_id
required
integer

项目ID。您可以在您的发布商帐户项目名称旁边找到。

Example: 44056
item_sku
required
string
Default: "full_game_1"

商品SKU。

query Parameters
locale
string
Default: "en"

响应语言。按照ISO 639-1规定使用两个小写字母的语言代码。

additional_fields[]
Array of strings

附加字段列表。如果在请求中发送这些字段,则它们将包含在响应中。

Items Enum: "media_list" "order" "long_description" "custom_attributes"
country
string

Two-letter uppercase country code per ISO 3166-1 alpha-2. Check the documentation for detailed information about countries supported by Xsolla and the process of determining the country.

Example: country=US
promo_code
string [ 1 .. 128 ] characters

区分大小写的唯一券码。包含字母和数字。

Example: promo_code=WINTER2021
show_inactive_time_limited_items
integer
Default: 0

显示用户不可用的时效性商品。此类商品的有效期尚未开始或已过期。

Example: show_inactive_time_limited_items=1
Responses
200

成功收到游戏。

404

未找到游戏。

Request samples
curl -i -X GET \
  'https://store.xsolla.com/api/v2/project/{project_id}/items/game/sku/{item_sku}?locale=en&additional_fields%5B%5D=media_list&country=US&promo_code=WINTER2021&show_inactive_time_limited_items=1' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response samples
application/json
{
  • "attributes": [
    ],
  • "description": "Game description",
  • "groups": [
    ],
  • "name": "Game name",
  • "promotions": [ ],
  • "sku": "com.xsolla.game_1",
  • "type": "unit",
  • "unit_items": [
    ],
  • "unit_type": "game"
}