GET api/Game/ByProductID/{id}

Gets a game by Product ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

ProductID of the game to retrieve

integer

Required

Body Parameters

None.

Response Information

Resource Description

Game

Game
NameDescriptionTypeAdditional information
ProductID

integer

None.

ImageClientName

string

None.

ProductName

string

None.

BoxShotUrl

string

None.

LargeBoxShotUrl

string

None.

LargeBoxShotUrlCDN

string

None.

BoxShotUrlCDN

string

None.

ScreenShotsCDN

Collection of string

None.

PromoImageUrl

string

None.

ManualUrl

string

None.

ShortDesc

string

None.

FullDesc

string

None.

CategoryName

string

None.

ScreenShots

Collection of string

None.

Trailers

Collection of string

None.

Languages

Collection of string

None.

Publisher

string

None.

ReleaseDate

date

None.

ESRB

string

None.

Platform

string

None.

ArchiveSize

integer

None.

ArchiveSizeDisplay

string

None.

PreCacheSize

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ProductID": 1,
  "ImageClientName": "sample string 2",
  "ProductName": "sample string 3",
  "BoxShotUrl": "sample string 4",
  "LargeBoxShotUrl": "sample string 5",
  "LargeBoxShotUrlCDN": "sample string 5",
  "BoxShotUrlCDN": "sample string 4",
  "ScreenShotsCDN": [
    "sample string 1",
    "sample string 2"
  ],
  "PromoImageUrl": "sample string 6",
  "ManualUrl": "sample string 7",
  "ShortDesc": "sample string 8",
  "FullDesc": "sample string 9",
  "CategoryName": "sample string 10",
  "ScreenShots": [
    "sample string 1",
    "sample string 2"
  ],
  "Trailers": [
    "sample string 1",
    "sample string 2"
  ],
  "Languages": [
    "sample string 1",
    "sample string 2"
  ],
  "Publisher": "sample string 13",
  "ReleaseDate": "2025-09-25T14:59:05.5748574+00:00",
  "ESRB": "sample string 15",
  "Platform": "sample string 16",
  "ArchiveSize": 1,
  "ArchiveSizeDisplay": "0",
  "PreCacheSize": 1
}

application/xml, text/xml

Sample:
<Game xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yummy.Portal.Models">
  <ArchiveSize>1</ArchiveSize>
  <BoxShotUrl>sample string 4</BoxShotUrl>
  <CategoryName>sample string 10</CategoryName>
  <ESRB>sample string 15</ESRB>
  <FullDesc>sample string 9</FullDesc>
  <ImageClientName>sample string 2</ImageClientName>
  <Languages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Languages>
  <LargeBoxShotUrl>sample string 5</LargeBoxShotUrl>
  <ManualUrl>sample string 7</ManualUrl>
  <Platform>sample string 16</Platform>
  <PreCacheSize>1</PreCacheSize>
  <ProductID>1</ProductID>
  <ProductName>sample string 3</ProductName>
  <PromoImageUrl>sample string 6</PromoImageUrl>
  <Publisher>sample string 13</Publisher>
  <ReleaseDate>2025-09-25T14:59:05.5748574+00:00</ReleaseDate>
  <ScreenShots xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ScreenShots>
  <ScreenShotsCDN xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ScreenShotsCDN>
  <ShortDesc>sample string 8</ShortDesc>
  <Trailers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Trailers>
</Game>