List of any game shipments(only title and thumbnail)

Url: https://api.playkey.net/rest/PlaykeyAPI.svc/gameshipments/all/light?lang={lang}&filter_name={filterName}&covers={covers}&filter_categories_and_genres={filterCategoriesAndGenres}&ignore_categories={ignoreCategories}&ignore_platforms={ignorePlatforms}&token={token}&limit={limit}&offset={offset}

HTTP Method: GET

The following is a description of the parameters request:

lang - Display language
limit - Max count items in response (optional)*
offset - Initial item number in response (optional)*
token - Authentication token

 *if the optional fields are blank, do not participate in forming the signature

Description of how to response:

error - Error information
    code - Error code. Error 0 - no error
    message - Error message. Empty if none
game_shipments_any - Information on any game shipments
    game_shipment_any - Information on any game shipments(only title and thumbnail)
    [
        title - Game title
        covers - Game cover images
            Empty - 
            [
            ]
        screenshots - List of screenshots link
            Empty - 
            [
            ]
        trailers - List of trailers link
            Empty - 
            [
            ]
        code - Game code
    ]

The following is an example response Json body:

{
    "error": {
        "code": 0,
        "message": "string"
    },
    "game_shipments_any": [
        {
            "title": "string",
            "covers": [
                "",
                ""
            ],
            "screenshots": [
                "",
                ""
            ],
            "trailers": [
                "",
                ""
            ],
            "code": "string"
        },
        {
            "title": "string",
            "covers": [
                "",
                ""
            ],
            "screenshots": [
                "",
                ""
            ],
            "trailers": [
                "",
                ""
            ],
            "code": "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>
  <game_shipments_any>
    <game_shipment_any>
      <title>string</title>
      <covers xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <a:string />
        <a:string />
      </covers>
      <screenshots xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <a:string />
        <a:string />
      </screenshots>
      <trailers xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <a:string />
        <a:string />
      </trailers>
      <code>string</code>
    </game_shipment_any>
    <game_shipment_any>
      <title>string</title>
      <covers xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <a:string />
        <a:string />
      </covers>
      <screenshots xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <a:string />
        <a:string />
      </screenshots>
      <trailers xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <a:string />
        <a:string />
      </trailers>
      <code>string</code>
    </game_shipment_any>
  </game_shipments_any>
</result>