Offer for game

Url: https://api.playkey.net/rest/PlaykeyAPI.svc/user/game/offer

HTTP Method: POST

The following is an description request Json body:

lang - Display language
api_version - API version (default equal 1)
ga_clientId - Google Analytics ID
token - Authentication token
code_game - Game code

The following is an example request Json body:

{
    "lang": "lang",
    "api_version": 1284426391,
    "ga_clientId": "gaclientid",
    "token": "token",
    "code_game": "codegame"
}

Description of how to response:

error - Error information
    code - Error code. Error 0 - no error
    message - Error message. Empty if none
is_readed - Do read the offer to play
offer - The text of the offer for the game

The following is an example response Json body:

{
    "error": {
        "code": 0,
        "message": "string"
    },
    "is_readed": true,
    "offer": "string"
}

The following is an example response Xml body:

<result xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <error>
    <code>0</code>
    <message>string</message>
  </error>
  <is_readed>true</is_readed>
  <offer>string</offer>
</result>