Additional game shipments any info for user region

Url: https://api.playkey.net/rest/PlaykeyAPI.svc/gameshipments/info/auth

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 shipment any code

The following is an example request Json body:

{
    "lang": "lang",
    "api_version": 1069772586,
    "ga_clientId": "gaclientid",
    "token": "token",
    "code": "code"
}

Description of how to response:

error - Error information
    code - Error code. Error 0 - no error
    message - Error message. Empty if none
edition_links - Additional game content
    edition_links - Additional game content
    [
        code - Additional game content code
        title - Additional game content title
        row_links - Edition links
            edition_links - Edition links
            [
                code - Edition links code
                type - Edition links type
            ]
    ]

The following is an example response Json body:

{
    "error": {
        "code": 0,
        "message": "string"
    },
    "edition_links": [
        {
            "code": "string",
            "title": "string",
            "row_links": [
                {
                    "code": "string",
                    "type": "string"
                },
                {
                    "code": "string",
                    "type": "string"
                }
            ]
        },
        {
            "code": "string",
            "title": "string",
            "row_links": [
                {
                    "code": "string",
                    "type": "string"
                },
                {
                    "code": "string",
                    "type": "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>
  <edition_links>
    <edition_links>
      <code>string</code>
      <title>string</title>
      <row_links>
        <edition_links>
          <code>string</code>
          <type>string</type>
        </edition_links>
        <edition_links>
          <code>string</code>
          <type>string</type>
        </edition_links>
      </row_links>
    </edition_links>
    <edition_links>
      <code>string</code>
      <title>string</title>
      <row_links>
        <edition_links>
          <code>string</code>
          <type>string</type>
        </edition_links>
        <edition_links>
          <code>string</code>
          <type>string</type>
        </edition_links>
      </row_links>
    </edition_links>
  </edition_links>
</result>