API Documentation >> API 2.0 Main >> Entities >> Game

Game Entity

{
    game: {
        idGame:                     // game ID
        name:                       // game's name
        abbreviation                // the game's abbreviation
        links: {}                   // HATEOAS links
    }
}

For the links, see HATEOAS Links.

Example Entity

{
    game: [
        {
            idGame: 1
            name: "Magic the Gathering"
            abbreviation: "MtG"
            links: {}
        }
        {
            idGame: 2
            name: "World of Warcraft TCG"
            abbreviation: "WoW"
            links: {}
        }
    ]
    links: {}
}