get_application_launch_events

Gets all application launch events.

Path:
/lib/get_application_launch_events.js

Parameters:
None.

Example Request:

POST /redrock/query

{  
   "Script":"@/lib/get_application_launch_events.js",
   "Args":{  
      "PageNumber":1,
      "PageSize":10,
      "Limit":10,
      "SortBy":"",
      "direction":"False",
      "Caching":-1
   }   
}

Example Response:

{
    "success": true,
    "Result": {
        "IsAggregate": false,
        "Count": 10,
        "Columns": [
            {
                "Name": "EventType",
                "IsHidden": false,
                "DDName": "EventType",
                "Title": "Type",
                "DDTitle": "Type",
                "Description": null,
                "Type": 12,
                "Format": null,
                "Width": 0,
                "TableKey": "NotAKey",
                "ForeignKey": null,
                "TableName": "Event"
            },
            {
                "Name": "NormalizedUser",
                "IsHidden": false,
                "DDName": "NormalizedUser",
                "Title": "Normalized User",
                "DDTitle": "Normalized User",
                "Description": null,
                "Type": 12,
                "Format": null,
                "Width": 0,
                "TableKey": "NotAKey",
                "ForeignKey": "User",
                "TableName": "Event"
            },
            ...
        ],
        "FullCount": 1619,
        "Results": [
            {
                "Entities": [
                    {
                        "Type": "User",
                        "Key": "[email protected]",
                        "IsForeignKey": true
                    },
                    {
                        "Type": "Application",
                        "Key": "Baidu",
                        "IsForeignKey": true
                    }
                ],
                "Row": {
                    "ApplicationID": "Baidu",
                    "ApplicationName": "Baidu",
                    "EventType": "Cloud.Saas.Application.SelfServiceAppLaunch",
                    "ApplicationType": "Web",
                    "NormalizedUser": "[email protected]",
                    "WhenOccurred": "/Date(1521106555300)/"
                }
            },
            {
                "Entities": [
                    {
                        "Type": "User",
                        "Key": "[email protected]",
                        "IsForeignKey": true
                    },
                    {
                        "Type": "Application",
                        "Key": "Baidu",
                        "IsForeignKey": true
                    }
                ],
                "Row": {
                    "ApplicationID": "Baidu",
                    "ApplicationName": "Baidu",
                    "EventType": "Cloud.Saas.Application.SelfServiceAppLaunch",
                    "ApplicationType": "Web",
                    "NormalizedUser": "[email protected]",
                    "WhenOccurred": "/Date(1521106456590)/"
                }
            },
            ...
        ],
        "ReturnID": ""
    },
    "Message": null,
    "MessageID": null,
    "Exception": null,
    "ErrorID": null,
    "ErrorCode": null,
    "InnerExceptions": null
}