Collect Events

The following attributes can be modified and are supplied as JSON object in the body:

Preliminary actions

Query Parameters: No parameters
JSON body:
  • token (string) (Required) – Client access key. The key can be found in Client portal -> Account Settings -> System https://<clientaccount>.dhound.io/settings/system
  • hd (string) (Required) – unique asset key. The key can be found in Client Portal -> Asset Management -> Asset
  • ult (ulong) (Optional) - asset UTC local time in Unix format (seconds since Jan 01 1970)
  • ulto (ulong) (Optional) – asset time zone offset in seconds
  • er (string) (Optional) – error that could happened during parsing events
  • events (array) (Required) – array of security events.

    Below are fields of each security event:

Method: POST
Url: https://gate.dhound.io/collect

Example

POST https://gate.dhound.io/collect


{
	"token": "5SX7W_TBD",
	"hd": "DU1Y_TBD",
	"ult": 1542471619,
	"ulto": 10800,
	"events": [
		{
			"sid": 20510,
			"t": 1542462948,
			"m": "new software \u003cUpdate for Windows 10 for x64-based Systems (KB4023057)\u003e installed on the server",
			"ip": "LOCAL",
			"a": {
				"eventid": "1033",
				"recordid": "38976",
				"soft": "Update for Windows 10 for x64-based Systems (KB4023057)"
			},
			"src": "EventLogs\Application"
		}
	]
}

See Also