Receive notification for the user

Url: https://api.playkey.net/rest/PlaykeyAPI.svc/user/push/notification

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
push_token - User access token to notifications
user_time - Time on the user's computer

The following is an example request Json body:

{
    "lang": "lang",
    "api_version": 91298899,
    "ga_clientId": "gaclientid",
    "push_token": "pushtoken",
    "user_time": null
}

Description of how to response:

error - Error information
    code - Error code. Error 0 - no error
    message - Error message. Empty if none

The following is an example response Json body:

{
    "error": {
        "code": 0,
        "message": "string"
    },
    "push_notification_guid": "00000000-0000-0000-0000-000000000000",
    "img_url": null,
    "url": null
}

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>
  <push_notification_guid>00000000-0000-0000-0000-000000000000</push_notification_guid>
  <img_url i:nil="true" />
  <url i:nil="true" />
</result>