Install/Uninstall Notifications

Install and uninstall notifications are essentially POST requests from Nexusguard informing app developers that their apps have been installed, or uninstalled, by users. App developers are recommended to provide a HTTP/S URL that handles these requests.

Install or uninstall notification request contains a JSON object as its body. The following is an example:

{
    "signature": "44a154d02993d3bceca934b419bf94ac",
    "expiration_time": 1537341749338,
    "type": 2,
    "customer_id": "0840a6fb98445968",
    "action_time": 1537341449320
}

The provided URL should at least be able to validate the request and return a single code to acknowledge that the request is received. The following is an example:

{
    "code": 0
}