Connector API

The Synqly Connector APIs provide a unifying interface and data model for all supported service Providers.

See the Synqly Overview for more information.

Download OpenAPI description
Languages
Servers
Synqly
https://api.synqly.com/

Assets

Operations

Edr

Operations

Hooks

Operations

Identity

Operations

Notifications

Operations

Operations (In Development)

In Development

This feature is actively being developed. Breaking changes should be expected.

Please contact us before using this feature.

Operations

Siem

Operations

Query Investigations

Request

Queries investigations

Query
metaArray of strings or null

Add metadata to the response by invoking meta functions. Documentation for meta functions is available at https://docs.synqly.com/api-reference/meta-functions. Not all meta function are available at every endpoint.

cursorstring or null

Cursor to use to retrieve the next page of results.

limitinteger or null

Number of Investigation objects to return in this page. Defaults to 100.

orderArray of strings or null

Select a field to order the results by.

filterArray of strings or null

Filter results by this query.

include_raw_databoolean or null

Include the raw data from the SIEM in the response. Defaults to false.

curl -i -X GET \
  'https://api.synqly.com/v1/siem/investigations?cursor=string&filter=string&include_raw_data=true&limit=0&meta=string&order=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Bodyapplication/json
resultArray of objects(Investigation)required

List of investigations

result[].​idstringrequired

Unique identifier for the investigation

result[].​raw_datastringrequired

Original response from the SIEM

cursorstringrequired

Cursor to use to retrieve the next page of results

metaobject(MetaResponse)
Response
application/json
{ "result": [ {} ], "cursor": "string", "meta": { "stats": {}, "api": {} } }

Get Investigation

Request

Retrieves an investigation by ID.

Path
idstringrequired

ID of the investigation to retrieve.

Query
metaArray of strings or null

Add metadata to the response by invoking meta functions. Documentation for meta functions is available at https://docs.synqly.com/api-reference/meta-functions. Not all meta function are available at every endpoint.

include_raw_databoolean or null

Include the raw data from the SIEM in the response. Defaults to false.

curl -i -X GET \
  'https://api.synqly.com/v1/siem/investigations/{id}?include_raw_data=true&meta=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Bodyapplication/json
resultobject(Investigation)required
result.​idstringrequired

Unique identifier for the investigation

result.​raw_datastringrequired

Original response from the SIEM

metaobject(MetaResponse)
Response
application/json
{ "result": { "id": "string", "raw_data": "string" }, "meta": { "stats": {}, "api": {} } }

Patch Investigation

Request

Updates an investigation by ID.

Path
idstringrequired

ID of the investigation to update.

Bodyapplication/jsonrequiredArray [
opstring(PatchOp)required
Enum"add""copy""move""remove""replace""test"
pathstringrequired

The path to the field to update. The path is a JSON Pointer.

fromstring or null

The path to the field to copy from. This is required for copy and move operations.

valueany or null

The value to set the field to. This is required for add, replace and test operations.

]
curl -i -X PATCH \
  'https://api.synqly.com/v1/siem/investigations/{id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '[
    {
      "op": "add",
      "path": "string",
      "from": "string",
      "value": null
    }
  ]'

Responses

Bodyapplication/json
resultobject(Investigation)required
result.​idstringrequired

Unique identifier for the investigation

result.​raw_datastringrequired

Original response from the SIEM

metaobject(MetaResponse)
Response
application/json
{ "result": { "id": "string", "raw_data": "string" }, "meta": { "stats": {}, "api": {} } }

Get Evidence

Request

Retrieves the evidence for an investigation.

Path
idstringrequired

ID of the investigation to retrieve evidence for.

Query
metaArray of strings or null

Add metadata to the response by invoking meta functions. Documentation for meta functions is available at https://docs.synqly.com/api-reference/meta-functions. Not all meta function are available at every endpoint.

include_raw_databoolean or null

Include the raw data from the SIEM in the response. Defaults to false.

curl -i -X GET \
  'https://api.synqly.com/v1/siem/investigations/{id}/evidence?include_raw_data=true&meta=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Bodyapplication/json
resultobject(Evidence)required
result.​investigation_idstringrequired

Unique identifier for the investigation associated with the evidence

result.​raw_datastringrequired

Original response from the SIEM

metaobject(MetaResponse)
Response
application/json
{ "result": { "investigation_id": "string", "raw_data": "string" }, "meta": { "stats": {}, "api": {} } }

Query Log Providers

Request

Queries available log providers in the source SIEM

Query
metaArray of strings or null

Add metadata to the response by invoking meta functions. Documentation for meta functions is available at https://docs.synqly.com/api-reference/meta-functions. Not all meta function are available at every endpoint.

cursorstring or null

Cursor to use to retrieve the next page of results.

limitinteger or null

Number of log provider objects to return in this page. Defaults to 100.

curl -i -X GET \
  'https://api.synqly.com/v1/siem/log-providers?cursor=string&limit=0&meta=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Bodyapplication/json
resultArray of objects(LogProvider)required

List of available metadata.log_provider values available for querying events

result[].​namestringrequired

Name of the log provider, usable as a filter value for metadata.log_provider when querying for events.

result[].​sourcestring or null

Some backing providers have multiple log source types. When available, this metadata provides an indication of the backing provider' log provider type.

cursorstringrequired

Cursor to use to retrieve the next page of results

statusstring(QueryStatus)required
Enum"PENDING""COMPLETE"
metaobject(MetaResponse)
Response
application/json
{ "result": [ {} ], "cursor": "string", "meta": { "stats": {}, "api": {} }, "status": "PENDING" }

Post Events

Request

Writes a batch of Event objects to the SIEM configured with the token used for authentication.

Bodyapplication/jsonrequired

The Event object to be sent.

Array [
One of:

Account Change events report when specific user account management tasks are performed, such as a user/role being created, changed, deleted, renamed, disabled, enabled, locked out or unlocked.

class_namestringrequired
Value"Account Change"
activity_idinteger(ocsfv1.3.0accountchangeActivityId)required

ActivityId is an enum, and the following values are allowed. 0 - Unknown: The event activity is unknown. 1 - Create: A user/role was created. 2 - Enable: A user/role was enabled. 3 - PasswordChange: An attempt was made to change an account's password. 4 - PasswordReset: An attempt was made to reset an account's password. 5 - Disable: A user/role was disabled. 6 - Delete: A user/role was deleted. 7 - AttachPolicy: An IAM Policy was attached to a user/role. 8 - DetachPolicy: An IAM Policy was detached from a user/role. 9 - Lock: A user account was locked out. 10 - MFAFactorEnable: An authentication factor was enabled for an account. 11 - MFAFactorDisable: An authentication factor was disabled for an account. 99 - Other: The event activity is not mapped. See the activity_name attribute, which contains a data source specific value.

category_uidinteger(ocsfv1.3.0accountchangeCategoryUid)required

CategoryUid is an enum, and the following values are allowed. 3 - AccessManagement: Identity & Access Management (IAM) events relate to the supervision of the system's authentication and access control model. Examples of such events are the success or failure of authentication, granting of authority, password change, entity change, privileged use etc.

class_uidinteger(ocsfv1.3.0accountchangeClassUid)required

ClassUid is an enum, and the following values are allowed. 3001 - AccountChange: Account Change events report when specific user account management tasks are performed, such as a user/role being created, changed, deleted, renamed, disabled, enabled, locked out or unlocked.

metadataobject(ocsfv1.3.0accountchangeMetadata)required

The Metadata object describes the metadata associated with the event. Defined by D3FEND d3f:Metadata.

metadata.​productobject(ocsfv1.3.0accountchangeProduct)required

The Product object describes characteristics of a software product.

metadata.​product.​vendor_namestringrequired

The name of the vendor of the product.

metadata.​product.​cpe_namestring or null

The Common Platform Enumeration (CPE) name as described by (NIST) For example: cpe:/a:apple:safari:16.2.

metadata.​product.​featureobject(ocsfv1.3.0accountchangeFeature)

The Feature object provides information about the software product feature that generated a specific event. It encompasses details related to the capabilities, components, user interface (UI) design, and performance upgrades associated with the feature.

metadata.​product.​langstring or null

The two letter lower case language codes, as defined by ISO 639-1. For example: en (English), de (German), or fr (French).

metadata.​product.​namestring or null

The name of the product.

metadata.​product.​pathstring or null

The installation path of the product.

metadata.​product.​uidstring or null

The unique identifier of the product.

metadata.​product.​url_stringstring(ocsfv1.3.0accountchangeURLString)

Uniform Resource Locator (URL) string. For example: http://www.example.com/download/trouble.exe.

metadata.​product.​versionstring or null

The version of the product, as defined by the event source. For example: 2013.1.3-beta.

metadata.​versionstringrequired

The version of the OCSF schema, using Semantic Versioning Specification (SemVer). For example: 1.0.0. Event consumers use the version to determine the available event attributes.

metadata.​correlation_uidstring or null

The unique identifier used to correlate events.

metadata.​event_codestring or null

The Event ID or Code that the product uses to describe the event.

metadata.​extensionobject(ocsfv1.3.0accountchangeExtension)

The OCSF Schema Extension object provides detailed information about the schema extension used to construct the event. The schema extensions are registered in the extensions.md file.

metadata.​extensionsArray of objects or null(ocsfv1.3.0accountchangeExtension)

The schema extensions used to create the event.

metadata.​labelsArray of strings or null

The list of category labels attached to the event or specific attributes. Labels are user defined tags or aliases added at normalization time.

For example: ["network", "connection.ip:destination", "device.ip:source"]
metadata.​log_levelstring or null

The audit level at which an event was generated.

metadata.​log_namestring or null

The event log name. For example, syslog file name or Windows logging subsystem: Security.

metadata.​log_providerstring or null

The logging provider or logging service that logged the event. For example, Microsoft-Windows-Security-Auditing.

metadata.​log_versionstring or null

The event log schema version that specifies the format of the original event. For example syslog version or Cisco Log Schema Version.

metadata.​logged_timeinteger(ocsfv1.3.0accountchangeTimestamp)

The timestamp format is the number of milliseconds since the Epoch 01/01/1970 00:00:00 UTC. For example 1618524549901.

metadata.​logged_time_dtstring or null(date-time)

The time when the logging system collected and logged the event.

This attribute is distinct from the event time in that event time typically contain the time extracted from the original event. Most of the time, these two times will be different.
metadata.​loggersArray of objects or null(ocsfv1.3.0accountchangeLogger)

An array of Logger objects that describe the devices and logging products between the event source and its eventual destination. Note, this attribute can be used when there is a complex end-to-end path of event flow.

metadata.​modified_timeinteger(ocsfv1.3.0accountchangeTimestamp)

The timestamp format is the number of milliseconds since the Epoch 01/01/1970 00:00:00 UTC. For example 1618524549901.

metadata.​modified_time_dtstring or null(date-time)

The time when the event was last modified or enriched.

metadata.​original_timestring or null

The original event time as reported by the event source. For example, the time in the original format from system event log such as Syslog on Unix/Linux and the System event file on Windows. Omit if event is generated instead of collected via logs.

metadata.​processed_timeinteger(ocsfv1.3.0accountchangeTimestamp)

The timestamp format is the number of milliseconds since the Epoch 01/01/1970 00:00:00 UTC. For example 1618524549901.

metadata.​processed_time_dtstring or null(date-time)

The event processed time, such as an ETL operation.

metadata.​profilesArray of strings or null

The list of profiles used to create the event. Profiles should be referenced by their name attribute for core profiles, or extension/name for profiles from extensions.

metadata.​sequenceinteger or null

Sequence number of the event. The sequence number is a value available in some events, to make the exact ordering of events unambiguous, regardless of the event time precision.

metadata.​tenant_uidstring or null

The unique tenant identifier.

metadata.​uidstring or null

The logging system-assigned unique identifier of an event instance.

severity_idinteger(ocsfv1.3.0accountchangeSeverityId)required

SeverityId is an enum, and the following values are allowed. 0 - Unknown: The event/finding severity is unknown. 1 - Informational: Informational message. No action required. 2 - Low: The user decides if action is needed. 3 - Medium: Action is required but the situation is not serious at this time. 4 - High: Action is required immediately. 5 - Critical: Action is required immediately and the scope is broad. 6 - Fatal: An error occurred but it is too late to take remedial action. 99 - Other: The event/finding severity is not mapped. See the severity attribute, which contains a data source specific value.

timeinteger(ocsfv1.3.0accountchangeTimestamp)required

The timestamp format is the number of milliseconds since the Epoch 01/01/1970 00:00:00 UTC. For example 1618524549901.

type_uidinteger(ocsfv1.3.0accountchangeTypeUid)required

TypeUid is an enum, and the following values are allowed. 300100 - Unknown 300101 - Create: A user/role was created. 300102 - Enable: A user/role was enabled. 300103 - PasswordChange: An attempt was made to change an account's password. 300104 - PasswordReset: An attempt was made to reset an account's password. 300105 - Disable: A user/role was disabled. 300106 - Delete: A user/role was deleted. 300107 - AttachPolicy: An IAM Policy was attached to a user/role. 300108 - DetachPolicy: An IAM Policy was detached from a user/role. 300109 - Lock: A user account was locked out. 300110 - MFAFactorEnable: An authentication factor was enabled for an account. 300111 - MFAFactorDisable: An authentication factor was disabled for an account. 300199 - Other

userobject(ocsfv1.3.0accountchangeUser)required

The User object describes the characteristics of a user/person or a security principal. Defined by D3FEND d3f:UserAccount.

user.​accountobject(ocsfv1.3.0accountchangeAccount)

The Account object contains details about the account that initiated or performed a specific activity within a system or application.

user.​credential_uidstring or null

The unique identifier of the user's credential. For example, AWS Access Key ID.

user.​domainstring or null

The domain where the user is defined. For example: the LDAP or Active Directory domain.

user.​email_addrstring(ocsfv1.3.0accountchangeEmailAddress)

Email address. For example: john_doe@example.com.

user.​full_namestring or null

The full name of the person, as per the LDAP Common Name attribute (cn).

user.​groupsArray of objects or null(ocsfv1.3.0accountchangeGroup)

The administrative groups to which the user belongs.

user.​ldap_personobject(ocsfv1.3.0accountchangeLdapPerson)

The additional LDAP attributes that describe a person.

user.​mfa_statusstring or null

The multi-factor authentication status, normalized to the caption of the mfa_status_id value. In the case of 'Other', it is defined by the data source.

user.​mfa_status_idinteger(ocsfv1.3.0accountchangeUser_MfaStatusId)

UserMfaStatusId is an enum, and the following values are allowed. 0 - Unknown: The status is unknown. 1 - Enabled: Multi-factor authentication is on for this user. 2 - NotEnabled: TMulti-factor authentication is off for this user. 99 - Other: The event status is not mapped. See the user_status attribute, which contains a data source specific value.

user.​namestring(ocsfv1.3.0accountchangeUserName)

User name. For example: john_doe.

user.​orgobject(ocsfv1.3.0accountchangeOrganization)

The Organization object describes characteristics of an organization or company and its division if any.

user.​privilegesArray of strings or null

The user's privileges.

user.​risk_levelstring or null

The risk level, normalized to the caption of the risk_level_id value.

user.​risk_level_idinteger(ocsfv1.3.0accountchangeUser_RiskLevelId)

UserRiskLevelId is an enum, and the following values are allowed. 0 - Info 1 - Low 2 - Medium 3 - High 4 - Critical 99 - Other: The risk level is not mapped. See the risk_level attribute, which contains a data source specific value.

user.​risk_scoreinteger or null

The risk score as reported by the event source.

user.​typestring or null

The type of the user. For example, System, AWS IAM User, etc.

user.​type_idinteger(ocsfv1.3.0accountchangeUser_TypeId)

UserTypeId is an enum, and the following values are allowed. 0 - Unknown: The type is unknown. 1 - User: Regular user account. 2 - Admin: Admin/root user account. 3 - System: System account. For example, Windows computer accounts with a trailing dollar sign ($). 99 - Other: The type is not mapped. See the type attribute, which contains a data source specific value.

user.​uidstring or null

The unique user identifier. For example, the Windows user SID, ActiveDirectory DN or AWS user ARN.

user.​uid_altstring or null

The alternate user identifier. For example, the Active Directory user GUID or AWS user Principal ID.

user.​user_statusstring or null

The user status, normalized to the caption of the user_status_id value. In the case of 'Other', it is defined by the data source.

user.​user_status_idinteger(ocsfv1.3.0accountchangeUser_UserStatusId)

UserUserStatusId is an enum, and the following values are allowed. 0 - Unknown: The status is unknown. 1 - Active: The user is active. 2 - Pending: The user is not active, pending either user or admin action. 3 - Locked: The user account is locked requiring either time or intervention to unlock. 4 - Suspended: The user account is suspended. 5 - Deprovisioned: The user account has been deprovisioned and is pending removal. 99 - Other: The event status is not mapped. See the user_status attribute, which contains a data source specific value.

activity_namestring or null

The event activity name, as defined by the activity_id.

actorobject(ocsfv1.3.0accountchangeActor)

The Actor object contains details about the user, role, application, service, or process that initiated or performed a specific activity.

apiobject(ocsfv1.3.0accountchangeApi)

The API, or Application Programming Interface, object represents information pertaining to an API request and response.

category_namestring or null

The event category name, as defined by category_uid value: Identity & Access Management.

cloudobject(ocsfv1.3.0accountchangeCloud)

The Cloud object contains information about a cloud account such as AWS Account ID, regions, etc.

countinteger or null

The number of times that events in the same logical group occurred during the event Start Time to End Time period.

custom_fieldsobject(ocsfv1.3.0accountchangeObject)

An unordered collection of attributes. It defines a set of attributes available in all objects. It can be also used as a generic object to log objects that are not otherwise defined by the schema.

deviceobject(ocsfv1.3.0accountchangeDevice)

The Device object represents an addressable computer system or host, which is typically connected to a computer network and participates in the transmission or processing of data within the computer network. Defined by D3FEND d3f:Host.

durationinteger or null

The event duration or aggregate time, the amount of time the event covers from start_time to end_time in milliseconds.

end_timeinteger(ocsfv1.3.0accountchangeTimestamp)

The timestamp format is the number of milliseconds since the Epoch 01/01/1970 00:00:00 UTC. For example 1618524549901.

end_time_dtstring or null(date-time)

The end time of a time period, or the time of the most recent event included in the aggregate event.

enrichmentsArray of objects or null(ocsfv1.3.0accountchangeEnrichment)

The additional information from an external data source, which is associated with the event or a finding. For example add location information for the IP address in the DNS answers:

[{"name": "answers.ip", "value": "92.24.47.250", "type": "location", "data": {"city": "Socotra", "continent": "Asia", "coordinates": [-25.4153, 17.0743], "country": "YE", "desc": "Yemen"}}]

http_requestobject(ocsfv1.3.0accountchangeHttpRequest)

The HTTP Request object represents the attributes of a request made to a web server. It encapsulates the details and metadata associated with an HTTP request, including the request method, headers, URL, query parameters, body content, and other relevant information.

messagestring or null

The description of the event/finding, as defined by the source.

observablesArray of objects or null(ocsfv1.3.0accountchangeObservable)

The observables associated with the event or a finding.

osintArray of objects or null(ocsfv1.3.0accountchangeOsint)

The OSINT (Open Source Intelligence) object contains details related to an indicator such as the indicator itself, related indicators, geolocation, registrar information, subdomains, analyst commentary, and other contextual information. This information can be used to further enrich a detection or finding by providing decisioning support to other analysts and engineers.

policyobject(ocsfv1.3.0accountchangePolicy)

The Policy object describes the policies that are applicable.

Policy attributes provide traceability to the operational state of the security product at the time that the event was captured, facilitating forensics, troubleshooting, and policy tuning/adjustments.

raw_datastring or null

The raw event/finding data as received from the source.

severitystring or null

The event/finding severity, normalized to the caption of the severity_id value. In the case of 'Other', it is defined by the source.

src_endpointobject(ocsfv1.3.0accountchangeNetworkEndpoint)

The Network Endpoint object describes characteristics of a network endpoint. These can be a source or destination of a network connection.

start_timeinteger(ocsfv1.3.0accountchangeTimestamp)

The timestamp format is the number of milliseconds since the Epoch 01/01/1970 00:00:00 UTC. For example 1618524549901.

start_time_dtstring or null(date-time)

The start time of a time period, or the time of the least recent event included in the aggregate event.

statusstring or null

The event status, normalized to the caption of the status_id value. In the case of 'Other', it is defined by the event source.

status_codestring or null

The event status code, as reported by the event source.

For example, in a Windows Failed Authentication event, this would be the value of 'Failure Code', e.g. 0x18.

status_detailstring or null

The status detail contains additional information about the event/finding outcome.

status_idinteger(ocsfv1.3.0accountchangeStatusId)

StatusId is an enum, and the following values are allowed. 0 - Unknown: The status is unknown. 1 - Success 2 - Failure 99 - Other: The event status is not mapped. See the status attribute, which contains a data source specific value.

time_dtstring or null(date-time)

The normalized event occurrence time or the finding creation time.

timezone_offsetinteger or null

The number of minutes that the reported event time is ahead or behind UTC, in the range -1,080 to +1,080.

type_namestring or null

The event/finding type name, as defined by the type_uid.

unmappedobject(ocsfv1.3.0accountchangeObject)

An unordered collection of attributes. It defines a set of attributes available in all objects. It can be also used as a generic object to log objects that are not otherwise defined by the schema.

user_resultobject(ocsfv1.3.0accountchangeUser)

The User object describes the characteristics of a user/person or a security principal. Defined by D3FEND d3f:UserAccount.

]
curl -i -X POST \
  https://api.synqly.com/v1/siem/events \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '[
    {
      "class_name": "Account Change",
      "activity_id": 0,
      "activity_name": "string",
      "actor": {
        "app_name": "string",
        "app_uid": "string",
        "authorizations": [
          {
            "decision": "string",
            "policy": {
              "desc": "string",
              "group": {
                "desc": "string",
                "domain": "string",
                "name": "string",
                "privileges": [
                  null
                ],
                "type": "string",
                "uid": "string"
              },
              "is_applied": true,
              "name": "string",
              "uid": "string",
              "version": "string"
            }
          }
        ],
        "idp": {
          "name": "string",
          "uid": "string"
        },
        "invoked_by": "string",
        "process": {
          "auid": 0,
          "cmd_line": "string",
          "container": {
            "hash": {
              "algorithm": "string",
              "algorithm_id": 0,
              "value": "string"
            },
            "image": {
              "labels": [
                "string"
              ],
              "name": "string",
              "path": "string",
              "tag": "string",
              "uid": "string"
            },
            "name": "string",
            "network_driver": "string",
            "orchestrator": "string",
            "pod_uuid": "string",
            "runtime": "string",
            "size": 0,
            "tag": "string",
            "uid": "string"
          },
          "created_time": 0,
          "created_time_dt": "2019-08-24T14:15:22Z",
          "egid": 0,
          "euid": 0,
          "file": {
            "accessed_time": 0,
            "accessed_time_dt": "2019-08-24T14:15:22Z",
            "accessor": {
              "account": {
                "labels": [
                  null
                ],
                "name": "string",
                "type": "string",
                "type_id": 0,
                "uid": "string"
              },
              "credential_uid": "string",
              "domain": "string",
              "email_addr": "string",
              "full_name": "string",
              "groups": [
                {
                  "privileges": []
                }
              ],
              "ldap_person": {
                "cost_center": "string",
                "created_time": 0,
                "created_time_dt": "2019-08-24T14:15:22Z",
                "deleted_time": 0,
                "deleted_time_dt": "2019-08-24T14:15:22Z",
                "email_addrs": [
                  null
                ],
                "employee_uid": "string",
                "given_name": "string",
                "hire_time": 0,
                "hire_time_dt": "2019-08-24T14:15:22Z",
                "job_title": "string",
                "labels": [
                  null
                ],
                "last_login_time": 0,
                "last_login_time_dt": "2019-08-24T14:15:22Z",
                "ldap_cn": "string",
                "ldap_dn": "string",
                "leave_time": 0,
                "leave_time_dt": "2019-08-24T14:15:22Z",
                "location": {
                  "coordinates": []
                },
                "manager": {},
                "modified_time": 0,
                "modified_time_dt": "2019-08-24T14:15:22Z",
                "office_location": "string",
                "surname": "string"
              },
              "mfa_status": "string",
              "mfa_status_id": 0,
              "name": "string",
              "org": {
                "name": "string",
                "ou_name": "string",
                "ou_uid": "string",
                "uid": "string"
              },
              "privileges": [
                "string"
              ],
              "risk_level": "string",
              "risk_level_id": 0,
              "risk_score": 0,
              "type": "string",
              "type_id": 0,
              "uid": "string",
              "uid_alt": "string",
              "user_status": "string",
              "user_status_id": 0
            },
            "attributes": 0,
            "company_name": "string",
            "confidentiality": "string",
            "confidentiality_id": 0,
            "created_time": 0,
            "created_time_dt": "2019-08-24T14:15:22Z",
            "creator": {
              "account": {
                "labels": [
                  null
                ],
                "name": "string",
                "type": "string",
                "type_id": 0,
                "uid": "string"
              },
              "credential_uid": "string",
              "domain": "string",
              "email_addr": "string",
              "full_name": "string",
              "groups": [
                {
                  "privileges": []
                }
              ],
              "ldap_person": {
                "cost_center": "string",
                "created_time": 0,
                "created_time_dt": "2019-08-24T14:15:22Z",
                "deleted_time": 0,
                "deleted_time_dt": "2019-08-24T14:15:22Z",
                "email_addrs": [
                  null
                ],
                "employee_uid": "string",
                "given_name": "string",
                "hire_time": 0,
                "hire_time_dt": "2019-08-24T14:15:22Z",
                "job_title": "string",
                "labels": [
                  null
                ],
                "last_login_time": 0,
                "last_login_time_dt": "2019-08-24T14:15:22Z",
                "ldap_cn": "string",
                "ldap_dn": "string",
                "leave_time": 0,
                "leave_time_dt": "2019-08-24T14:15:22Z",
                "location": {
                  "coordinates": []
                },
                "manager": {},
                "modified_time": 0,
                "modified_time_dt": "2019-08-24T14:15:22Z",
                "office_location": "string",
                "surname": "string"
              },
              "mfa_status": "string",
              "mfa_status_id": 0,
              "name": "string",
              "org": {
                "name": "string",
                "ou_name": "string",
                "ou_uid": "string",
                "uid": "string"
              },
              "privileges": [
                "string"
              ],
              "risk_level": "string",
              "risk_level_id": 0,
              "risk_score": 0,
              "type": "string",
              "type_id": 0,
              "uid": "string",
              "uid_alt": "string",
              "user_status": "string",
              "user_status_id": 0
            },
            "desc": "string",
            "ext": "string",
            "hashes": [
              {
                "algorithm": "string",
                "algorithm_id": 0,
                "value": "string"
              }
            ],
            "is_system": true,
            "mime_type": "string",
            "modified_time": 0,
            "modified_time_dt": "2019-08-24T14:15:22Z",
            "modifier": {
              "account": {
                "labels": [
                  null
                ],
                "name": "string",
                "type": "string",
                "type_id": 0,
                "uid": "string"
              },
              "credential_uid": "string",
              "domain": "string",
              "email_addr": "string",
              "full_name": "string",
              "groups": [
                {
                  "privileges": []
                }
              ],
              "ldap_person": {
                "cost_center": "string",
                "created_time": 0,
                "created_time_dt": "2019-08-24T14:15:22Z",
                "deleted_time": 0,
                "deleted_time_dt": "2019-08-24T14:15:22Z",
                "email_addrs": [
                  null
                ],
                "employee_uid": "string",
                "given_name": "string",
                "hire_time": 0,
                "hire_time_dt": "2019-08-24T14:15:22Z",
                "job_title": "string",
                "labels": [
                  null
                ],
                "last_login_time": 0,
                "last_login_time_dt": "2019-08-24T14:15:22Z",
                "ldap_cn": "string",
                "ldap_dn": "string",
                "leave_time": 0,
                "leave_time_dt": "2019-08-24T14:15:22Z",
                "location": {
                  "coordinates": []
                },
                "manager": {},
                "modified_time": 0,
                "modified_time_dt": "2019-08-24T14:15:22Z",
                "office_location": "string",
                "surname": "string"
              },
              "mfa_status": "string",
              "mfa_status_id": 0,
              "name": "string",
              "org": {
                "name": "string",
                "ou_name": "string",
                "ou_uid": "string",
                "uid": "string"
              },
              "privileges": [
                "string"
              ],
              "risk_level": "string",
              "risk_level_id": 0,
              "risk_score": 0,
              "type": "string",
              "type_id": 0,
              "uid": "string",
              "uid_alt": "string",
              "user_status": "string",
              "user_status_id": 0
            },
            "name": "string",
            "owner": {
              "account": {
                "labels": [
                  null
                ],
                "name": "string",
                "type": "string",
                "type_id": 0,
                "uid": "string"
              },
              "credential_uid": "string",
              "domain": "string",
              "email_addr": "string",
              "full_name": "string",
              "groups": [
                {
                  "privileges": []
                }
              ],
              "ldap_person": {
                "cost_center": "string",
                "created_time": 0,
                "created_time_dt": "2019-08-24T14:15:22Z",
                "deleted_time": 0,
                "deleted_time_dt": "2019-08-24T14:15:22Z",
                "email_addrs": [
                  null
                ],
                "employee_uid": "string",
                "given_name": "string",
                "hire_time": 0,
                "hire_time_dt": "2019-08-24T14:15:22Z",
                "job_title": "string",
                "labels": [
                  null
                ],
                "last_login_time": 0,
                "last_login_time_dt": "2019-08-24T14:15:22Z",
                "ldap_cn": "string",
                "ldap_dn": "string",
                "leave_time": 0,
                "leave_time_dt": "2019-08-24T14:15:22Z",
                "location": {
                  "coordinates": []
                },
                "manager": {},
                "modified_time": 0,
                "modified_time_dt": "2019-08-24T14:15:22Z",
                "office_location": "string",
                "surname": "string"
              },
              "mfa_status": "string",
              "mfa_status_id": 0,
              "name": "string",
              "org": {
                "name": "string",
                "ou_name": "string",
                "ou_uid": "string",
                "uid": "string"
              },
              "privileges": [
                "string"
              ],
              "risk_level": "string",
              "risk_level_id": 0,
              "risk_score": 0,
              "type": "string",
              "type_id": 0,
              "uid": "string",
              "uid_alt": "string",
              "user_status": "string",
              "user_status_id": 0
            },
            "parent_folder": "string",
            "path": "string",
            "product": {
              "cpe_name": "string",
              "feature": {
                "name": "string",
                "uid": "string",
                "version": "string"
              },
              "lang": "string",
              "name": "string",
              "path": "string",
              "uid": "string",
              "url_string": "string",
              "vendor_name": "string",
              "version": "string"
            },
            "security_descriptor": "string",
            "signature": {
              "algorithm": "string",
              "algorithm_id": 0,
              "certificate": {
                "created_time": 0,
                "created_time_dt": "2019-08-24T14:15:22Z",
                "expiration_time": 0,
                "expiration_time_dt": "2019-08-24T14:15:22Z",
                "fingerprints": [
                  null
                ],
                "is_self_signed": true,
                "issuer": "string",
                "serial_number": "string",
                "subject": "string",
                "uid": "string",
                "version": "string"
              },
              "created_time": 0,
              "created_time_dt": "2019-08-24T14:15:22Z",
              "developer_uid": "string",
              "digest": {
                "algorithm": "string",
                "algorithm_id": 0,
                "value": "string"
              },
              "state": "string",
              "state_id": 0
            },
            "size": 0,
            "type": "string",
            "type_id": 0,
            "uid": "string",
            "version": "string",
            "xattributes": {}
          },
          "group": {
            "desc": "string",
            "domain": "string",
            "name": "string",
            "privileges": [
              "string"
            ],
            "type": "string",
            "uid": "string"
          },
          "integrity": "string",
          "integrity_id": 0,
          "lineage": [
            "string"
          ],
          "loaded_modules": [
            "string"
          ],
          "name": "string",
          "namespace_pid": 0,
          "parent_process": {},
          "pid": 0,
          "sandbox": "string",
          "session": {
            "count": 0,
            "created_time": 0,
            "created_time_dt": "2019-08-24T14:15:22Z",
            "credential_uid": "string",
            "expiration_reason": "string",
            "expiration_time": 0,
            "expiration_time_dt": "2019-08-24T14:15:22Z",
            "is_mfa": true,
            "is_remote": true,
            "is_vpn": true,
            "issuer": "string",
            "terminal": "string",
            "uid": "string",
            "uid_alt": "string",
            "uuid": "string"
          },
          "terminated_time": 0,
          "terminated_time_dt": "2019-08-24T14:15:22Z",
          "tid": 0,
          "uid": "string",
          "user": {
            "account": {
              "labels": [
                "string"
              ],
              "name": "string",
              "type": "string",
              "type_id": 0,
              "uid": "string"
            },
            "credential_uid": "string",
            "domain": "string",
            "email_addr": "string",
            "full_name": "string",
            "groups": [
              {
                "desc": "string",
                "domain": "string",
                "name": "string",
                "privileges": [
                  null
                ],
                "type": "string",
                "uid": "string"
              }
            ],
            "ldap_person": {
              "cost_center": "string",
              "created_time": 0,
              "created_time_dt": "2019-08-24T14:15:22Z",
              "deleted_time": 0,
              "deleted_time_dt": "2019-08-24T14:15:22Z",
              "email_addrs": [
                "string"
              ],
              "employee_uid": "string",
              "given_name": "string",
              "hire_time": 0,
              "hire_time_dt": "2019-08-24T14:15:22Z",
              "job_title": "string",
              "labels": [
                "string"
              ],
              "last_login_time": 0,
              "last_login_time_dt": "2019-08-24T14:15:22Z",
              "ldap_cn": "string",
              "ldap_dn": "string",
              "leave_time": 0,
              "leave_time_dt": "2019-08-24T14:15:22Z",
              "location": {
                "city": "string",
                "continent": "string",
                "coordinates": [
                  null
                ],
                "country": "string",
                "desc": "string",
                "geohash": "string",
                "is_on_premises": true,
                "isp": "string",
                "lat": 0.1,
                "long": 0.1,
                "postal_code": "string",
                "provider": "string",
                "region": "string"
              },
              "manager": {},
              "modified_time": 0,
              "modified_time_dt": "2019-08-24T14:15:22Z",
              "office_location": "string",
              "surname": "string"
            },
            "mfa_status": "string",
            "mfa_status_id": 0,
            "name": "string",
            "org": {
              "name": "string",
              "ou_name": "string",
              "ou_uid": "string",
              "uid": "string"
            },
            "privileges": [
              "string"
            ],
            "risk_level": "string",
            "risk_level_id": 0,
            "risk_score": 0,
            "type": "string",
            "type_id": 0,
            "uid": "string",
            "uid_alt": "string",
            "user_status": "string",
            "user_status_id": 0
          },
          "xattributes": {}
        },
        "session": {
          "count": 0,
          "created_time": 0,
          "created_time_dt": "2019-08-24T14:15:22Z",
          "credential_uid": "string",
          "expiration_reason": "string",
          "expiration_time": 0,
          "expiration_time_dt": "2019-08-24T14:15:22Z",
          "is_mfa": true,
          "is_remote": true,
          "is_vpn": true,
          "issuer": "string",
          "terminal": "string",
          "uid": "string",
          "uid_alt": "string",
          "uuid": "string"
        },
        "user": {
          "account": {
            "labels": [
              "string"
            ],
            "name": "string",
            "type": "string",
            "type_id": 0,
            "uid": "string"
          },
          "credential_uid": "string",
          "domain": "string",
          "email_addr": "string",
          "full_name": "string",
          "groups": [
            {
              "desc": "string",
              "domain": "string",
              "name": "string",
              "privileges": [
                "string"
              ],
              "type": "string",
              "uid": "string"
            }
          ],
          "ldap_person": {
            "cost_center": "string",
            "created_time": 0,
            "created_time_dt": "2019-08-24T14:15:22Z",
            "deleted_time": 0,
            "deleted_time_dt": "2019-08-24T14:15:22Z",
            "email_addrs": [
              "string"
            ],
            "employee_uid": "string",
            "given_name": "string",
            "hire_time": 0,
            "hire_time_dt": "2019-08-24T14:15:22Z",
            "job_title": "string",
            "labels": [
              "string"
            ],
            "last_login_time": 0,
            "last_login_time_dt": "2019-08-24T14:15:22Z",
            "ldap_cn": "string",
            "ldap_dn": "string",
            "leave_time": 0,
            "leave_time_dt": "2019-08-24T14:15:22Z",
            "location": {
              "city": "string",
              "continent": "string",
              "coordinates": [
                0.1
              ],
              "country": "string",
              "desc": "string",
              "geohash": "string",
              "is_on_premises": true,
              "isp": "string",
              "lat": 0.1,
              "long": 0.1,
              "postal_code": "string",
              "provider": "string",
              "region": "string"
            },
            "manager": {},
            "modified_time": 0,
            "modified_time_dt": "2019-08-24T14:15:22Z",
            "office_location": "string",
            "surname": "string"
          },
          "mfa_status": "string",
          "mfa_status_id": 0,
          "name": "string",
          "org": {
            "name": "string",
            "ou_name": "string",
            "ou_uid": "string",
            "uid": "string"
          },
          "privileges": [
            "string"
          ],
          "risk_level": "string",
          "risk_level_id": 0,
          "risk_score": 0,
          "type": "string",
          "type_id": 0,
          "uid": "string",
          "uid_alt": "string",
          "user_status": "string",
          "user_status_id": 0
        }
      },
      "api": {
        "group": {
          "desc": "string",
          "domain": "string",
          "name": "string",
          "privileges": [
            "string"
          ],
          "type": "string",
          "uid": "string"
        },
        "operation": "string",
        "request": {
          "containers": [
            {
              "hash": {
                "algorithm": "string",
                "algorithm_id": 0,
                "value": "string"
              },
              "image": {
                "labels": [
                  null
                ],
                "name": "string",
                "path": "string",
                "tag": "string",
                "uid": "string"
              },
              "name": "string",
              "network_driver": "string",
              "orchestrator": "string",
              "pod_uuid": "string",
              "runtime": "string",
              "size": 0,
              "tag": "string",
              "uid": "string"
            }
          ],
          "data": null,
          "flags": [
            "string"
          ],
          "uid": "string"
        },
        "response": {
          "code": 0,
          "containers": [
            {
              "hash": {
                "algorithm": "string",
                "algorithm_id": 0,
                "value": "string"
              },
              "image": {
                "labels": [
                  null
                ],
                "name": "string",
                "path": "string",
                "tag": "string",
                "uid": "string"
              },
              "name": "string",
              "network_driver": "string",
              "orchestrator": "string",
              "pod_uuid": "string",
              "runtime": "string",
              "size": 0,
              "tag": "string",
              "uid": "string"
            }
          ],
          "data": null,
          "error": "string",
          "error_message": "string",
          "flags": [
            "string"
          ],
          "message": "string"
        },
        "service": {
          "labels": [
            "string"
          ],
          "name": "string",
          "uid": "string",
          "version": "string"
        },
        "version": "string"
      },
      "category_name": "string",
      "category_uid": 0,
      "class_uid": 0,
      "cloud": {
        "account": {
          "labels": [
            "string"
          ],
          "name": "string",
          "type": "string",
          "type_id": 0,
          "uid": "string"
        },
        "org": {
          "name": "string",
          "ou_name": "string",
          "ou_uid": "string",
          "uid": "string"
        },
        "project_uid": "string",
        "provider": "string",
        "region": "string",
        "zone": "string"
      },
      "count": 0,
      "custom_fields": {},
      "device": {
        "agent_list": [
          {
            "name": "string",
            "type": "string",
            "type_id": 0,
            "uid": "string",
            "uid_alt": "string",
            "vendor_name": "string",
            "version": "string"
          }
        ],
        "autoscale_uid": "string",
        "boot_time": 0,
        "boot_time_dt": "2019-08-24T14:15:22Z",
        "container": {
          "hash": {
            "algorithm": "string",
            "algorithm_id": 0,
            "value": "string"
          },
          "image": {
            "labels": [
              "string"
            ],
            "name": "string",
            "path": "string",
            "tag": "string",
            "uid": "string"
          },
          "name": "string",
          "network_driver": "string",
          "orchestrator": "string",
          "pod_uuid": "string",
          "runtime": "string",
          "size": 0,
          "tag": "string",
          "uid": "string"
        },
        "created_time": 0,
        "created_time_dt": "2019-08-24T14:15:22Z",
        "desc": "string",
        "domain": "string",
        "first_seen_time": 0,
        "first_seen_time_dt": "2019-08-24T14:15:22Z",
        "groups": [
          {
            "desc": "string",
            "domain": "string",
            "name": "string",
            "privileges": [
              "string"
            ],
            "type": "string",
            "uid": "string"
          }
        ],
        "hostname": "string",
        "hw_info": {
          "bios_date": "string",
          "bios_manufacturer": "string",
          "bios_uid": "string",
          "bios_ver": "string",
          "chassis": "string",
          "cpu_bits": 0,
          "cpu_cores": 0,
          "cpu_count": 0,
          "cpu_speed": 0,
          "cpu_type": "string",
          "desktop_display": {
            "color_depth": 0,
            "physical_height": 0,
            "physical_orientation": 0,
            "physical_width": 0,
            "scale_factor": 0
          },
          "keyboard_info": {
            "function_keys": 0,
            "ime": "string",
            "keyboard_layout": "string",
            "keyboard_subtype": 0,
            "keyboard_type": "string"
          },
          "ram_size": 0,
          "serial_number": "string"
        },
        "hypervisor": "string",
        "image": {
          "labels": [
            "string"
          ],
          "name": "string",
          "path": "string",
          "tag": "string",
          "uid": "string"
        },
        "imei": "string",
        "instance_uid": "string",
        "interface_name": "string",
        "interface_uid": "string",
        "ip": "string",
        "ip_addresses": [
          "string"
        ],
        "is_compliant": true,
        "is_managed": true,
        "is_personal": true,
        "is_trusted": true,
        "last_seen_time": 0,
        "last_seen_time_dt": "2019-08-24T14:15:22Z",
        "location": {
          "city": "string",
          "continent": "string",
          "coordinates": [
            0.1
          ],
          "country": "string",
          "desc": "string",
          "geohash": "string",
          "is_on_premises": true,
          "isp": "string",
          "lat": 0.1,
          "long": 0.1,
          "postal_code": "string",
          "provider": "string",
          "region": "string"
        },
        "mac": "string",
        "mac_addresses": [
          "string"
        ],
        "modified_time": 0,
        "modified_time_dt": "2019-08-24T14:15:22Z",
        "name": "string",
        "namespace_pid": 0,
        "netbios_names": [
          "string"
        ],
        "network_interfaces": [
          {
            "hostname": "string",
            "ip": "string",
            "ip_addresses": [
              "string"
            ],
            "mac": "string",
            "mac_addresses": [
              "string"
            ],
            "name": "string",
            "namespace": "string",
            "subnet_prefix": 0,
            "type": "string",
            "type_id": 0,
            "uid": "string"
          }
        ],
        "network_status": "string",
        "network_status_id": 0,
        "org": {
          "name": "string",
          "ou_name": "string",
          "ou_uid": "string",
          "uid": "string"
        },
        "os": {
          "build": "string",
          "country": "string",
          "cpe_name": "string",
          "cpu_bits": 0,
          "edition": "string",
          "lang": "string",
          "name": "string",
          "sp_name": "string",
          "sp_ver": 0,
          "type": "string",
          "type_id": 0,
          "version": "string"
        },
        "owner": {
          "account": {
            "labels": [
              "string"
            ],
            "name": "string",
            "type": "string",
            "type_id": 0,
            "uid": "string"
          },
          "credential_uid": "string",
          "domain": "string",
          "email_addr": "string",
          "full_name": "string",
          "groups": [
            {
              "desc": "string",
              "domain": "string",
              "name": "string",
              "privileges": [
                "string"
              ],
              "type": "string",
              "uid": "string"
            }
          ],
          "ldap_person": {
            "cost_center": "string",
            "created_time": 0,
            "created_time_dt": "2019-08-24T14:15:22Z",
            "deleted_time": 0,
            "deleted_time_dt": "2019-08-24T14:15:22Z",
            "email_addrs": [
              "string"
            ],
            "employee_uid": "string",
            "given_name": "string",
            "hire_time": 0,
            "hire_time_dt": "2019-08-24T14:15:22Z",
            "job_title": "string",
            "labels": [
              "string"
            ],
            "last_login_time": 0,
            "last_login_time_dt": "2019-08-24T14:15:22Z",
            "ldap_cn": "string",
            "ldap_dn": "string",
            "leave_time": 0,
            "leave_time_dt": "2019-08-24T14:15:22Z",
            "location": {
              "city": "string",
              "continent": "string",
              "coordinates": [
                0.1
              ],
              "country": "string",
              "desc": "string",
              "geohash": "string",
              "is_on_premises": true,
              "isp": "string",
              "lat": 0.1,
              "long": 0.1,
              "postal_code": "string",
              "provider": "string",
              "region": "string"
            },
            "manager": {},
            "modified_time": 0,
            "modified_time_dt": "2019-08-24T14:15:22Z",
            "office_location": "string",
            "surname": "string"
          },
          "mfa_status": "string",
          "mfa_status_id": 0,
          "name": "string",
          "org": {
            "name": "string",
            "ou_name": "string",
            "ou_uid": "string",
            "uid": "string"
          },
          "privileges": [
            "string"
          ],
          "risk_level": "string",
          "risk_level_id": 0,
          "risk_score": 0,
          "type": "string",
          "type_id": 0,
          "uid": "string",
          "uid_alt": "string",
          "user_status": "string",
          "user_status_id": 0
        },
        "region": "string",
        "risk_level": "string",
        "risk_level_id": 0,
        "risk_score": 0,
        "subnet": "string",
        "subnet_uid": "string",
        "sw_info": [
          {
            "cpe_name": "string",
            "feature": {
              "name": "string",
              "uid": "string",
              "version": "string"
            },
            "lang": "string",
            "name": "string",
            "path": "string",
            "uid": "string",
            "url_string": "string",
            "vendor_name": "string",
            "version": "string"
          }
        ],
        "type": "string",
        "type_id": 0,
        "uid": "string",
        "uid_alt": "string",
        "vendor": {
          "name": "string",
          "ou_name": "string",
          "ou_uid": "string",
          "uid": "string"
        },
        "vlan_uid": "string",
        "vpc_uid": "string",
        "zone": "string"
      },
      "duration": 0,
      "end_time": 0,
      "end_time_dt": "2019-08-24T14:15:22Z",
      "enrichments": [
        {
          "created_time": 0,
          "created_time_dt": "2019-08-24T14:15:22Z",
          "data": null,
          "desc": "string",
          "name": "string",
          "provider": "string",
          "reputation": {
            "base_score": 0.1,
            "provider": "string",
            "score": "string",
            "score_id": 0
          },
          "short_desc": "string",
          "src_url": "string",
          "type": "string",
          "value": "string"
        }
      ],
      "http_request": {
        "args": "string",
        "http_headers": [
          {
            "name": "string",
            "value": "string"
          }
        ],
        "http_method": "string",
        "length": 0,
        "referrer": "string",
        "uid": "string",
        "url": {
          "categories": [
            "string"
          ],
          "category_ids": [
            0
          ],
          "domain": "string",
          "hostname": "string",
          "path": "string",
          "port": 0,
          "query_string": "string",
          "resource_type": "string",
          "scheme": "string",
          "subdomain": "string",
          "url_string": "string"
        },
        "user_agent": "string",
        "version": "string",
        "x_forwarded_for": [
          "string"
        ]
      },
      "message": "string",
      "metadata": {
        "correlation_uid": "string",
        "event_code": "string",
        "extension": {
          "name": "string",
          "uid": "string",
          "version": "string"
        },
        "extensions": [
          {
            "name": "string",
            "uid": "string",
            "version": "string"
          }
        ],
        "labels": [
          "string"
        ],
        "log_level": "string",
        "log_name": "string",
        "log_provider": "string",
        "log_version": "string",
        "logged_time": 0,
        "logged_time_dt": "2019-08-24T14:15:22Z",
        "loggers": [
          {
            "device": {
              "agent_list": [
                {}
              ],
              "autoscale_uid": "string",
              "boot_time": 0,
              "boot_time_dt": "2019-08-24T14:15:22Z",
              "container": {
                "hash": {},
                "image": {
                  "labels": []
                },
                "name": "string",
                "network_driver": "string",
                "orchestrator": "string",
                "pod_uuid": "string",
                "runtime": "string",
                "size": 0,
                "tag": "string",
                "uid": "string"
              },
              "created_time": 0,
              "created_time_dt": "2019-08-24T14:15:22Z",
              "desc": "string",
              "domain": "string",
              "first_seen_time": 0,
              "first_seen_time_dt": "2019-08-24T14:15:22Z",
              "groups": [
                {
                  "privileges": []
                }
              ],
              "hostname": "string",
              "hw_info": {
                "bios_date": "string",
                "bios_manufacturer": "string",
                "bios_uid": "string",
                "bios_ver": "string",
                "chassis": "string",
                "cpu_bits": 0,
                "cpu_cores": 0,
                "cpu_count": 0,
                "cpu_speed": 0,
                "cpu_type": "string",
                "desktop_display": {},
                "keyboard_info": {},
                "ram_size": 0,
                "serial_number": "string"
              },
              "hypervisor": "string",
              "image": {
                "labels": [
                  null
                ],
                "name": "string",
                "path": "string",
                "tag": "string",
                "uid": "string"
              },
              "imei": "string",
              "instance_uid": "string",
              "interface_name": "string",
              "interface_uid": "string",
              "ip": "string",
              "ip_addresses": [
                "string"
              ],
              "is_compliant": true,
              "is_managed": true,
              "is_personal": true,
              "is_trusted": true,
              "last_seen_time": 0,
              "last_seen_time_dt": "2019-08-24T14:15:22Z",
              "location": {
                "city": "string",
                "continent": "string",
                "coordinates": [
                  null
                ],
                "country": "string",
                "desc": "string",
                "geohash": "string",
                "is_on_premises": true,
                "isp": "string",
                "lat": 0.1,
                "long": 0.1,
                "postal_code": "string",
                "provider": "string",
                "region": "string"
              },
              "mac": "string",
              "mac_addresses": [
                "string"
              ],
              "modified_time": 0,
              "modified_time_dt": "2019-08-24T14:15:22Z",
              "name": "string",
              "namespace_pid": 0,
              "netbios_names": [
                "string"
              ],
              "network_interfaces": [
                {
                  "ip_addresses": [],
                  "mac_addresses": []
                }
              ],
              "network_status": "string",
              "network_status_id": 0,
              "org": {
                "name": "string",
                "ou_name": "string",
                "ou_uid": "string",
                "uid": "string"
              },
              "os": {
                "build": "string",
                "country": "string",
                "cpe_name": "string",
                "cpu_bits": 0,
                "edition": "string",
                "lang": "string",
                "name": "string",
                "sp_name": "string",
                "sp_ver": 0,
                "type": "string",
                "type_id": 0,
                "version": "string"
              },
              "owner": {
                "account": {
                  "labels": []
                },
                "credential_uid": "string",
                "domain": "string",
                "email_addr": "string",
                "full_name": "string",
                "groups": [
                  null
                ],
                "ldap_person": {
                  "email_addrs": [],
                  "labels": []
                },
                "mfa_status": "string",
                "mfa_status_id": 0,
                "name": "string",
                "org": {},
                "privileges": [
                  null
                ],
                "risk_level": "string",
                "risk_level_id": 0,
                "risk_score": 0,
                "type": "string",
                "type_id": 0,
                "uid": "string",
                "uid_alt": "string",
                "user_status": "string",
                "user_status_id": 0
              },
              "region": "string",
              "risk_level": "string",
              "risk_level_id": 0,
              "risk_score": 0,
              "subnet": "string",
              "subnet_uid": "string",
              "sw_info": [
                {}
              ],
              "type": "string",
              "type_id": 0,
              "uid": "string",
              "uid_alt": "string",
              "vendor": {
                "name": "string",
                "ou_name": "string",
                "ou_uid": "string",
                "uid": "string"
              },
              "vlan_uid": "string",
              "vpc_uid": "string",
              "zone": "string"
            },
            "log_level": "string",
            "log_name": "string",
            "log_provider": "string",
            "log_version": "string",
            "logged_time": 0,
            "logged_time_dt": "2019-08-24T14:15:22Z",
            "name": "string",
            "product": {
              "cpe_name": "string",
              "feature": {
                "name": "string",
                "uid": "string",
                "version": "string"
              },
              "lang": "string",
              "name": "string",
              "path": "string",
              "uid": "string",
              "url_string": "string",
              "vendor_name": "string",
              "version": "string"
            },
            "transmit_time": 0,
            "transmit_time_dt": "2019-08-24T14:15:22Z",
            "uid": "string",
            "version": "string"
          }
        ],
        "modified_time": 0,
        "modified_time_dt": "2019-08-24T14:15:22Z",
        "original_time": "string",
        "processed_time": 0,
        "processed_time_dt": "2019-08-24T14:15:22Z",
        "product": {
          "cpe_name": "string",
          "feature": {
            "name": "string",
            "uid": "string",
            "version": "string"
          },
          "lang": "string",
          "name": "string",
          "path": "string",
          "uid": "string",
          "url_string": "string",
          "vendor_name": "string",
          "version": "string"
        },
        "profiles": [
          "string"
        ],
        "sequence": 0,
        "tenant_uid": "string",
        "uid": "string",
        "version": "string"
      },
      "observables": [
        {
          "name": "string",
          "reputation": {
            "base_score": 0.1,
            "provider": "string",
            "score": "string",
            "score_id": 0
          },
          "type": "string",
          "type_id": 0,
          "value": "string"
        }
      ],
      "osint": [
        {
          "answers": [
            {
              "class": "string",
              "flag_ids": [
                0
              ],
              "flags": [
                "string"
              ],
              "packet_uid": 0,
              "rdata": "string",
              "ttl": 0,
              "type": "string"
            }
          ],
          "attacks": [
            {
              "sub_technique": {
                "name": "string",
                "src_url": "string",
                "uid": "string"
              },
              "tactic": {
                "name": "string",
                "src_url": "string",
                "uid": "string"
              },
              "tactics": [
                {}
              ],
              "technique": {
                "name": "string",
                "src_url": "string",
                "uid": "string"
              },
              "version": "string"
            }
          ],
          "autonomous_system": {
            "name": "string",
            "number": 0
          },
          "comment": "string",
          "confidence": "string",
          "confidence_id": 0,
          "email": {
            "cc": [
              "string"
            ],
            "delivered_to": "string",
            "from": "string",
            "message_uid": "string",
            "raw_header": "string",
            "reply_to": "string",
            "size": 0,
            "smtp_from": "string",
            "smtp_to": [
              "string"
            ],
            "subject": "string",
            "to": [
              "string"
            ],
            "uid": "string",
            "x_originating_ip": [
              "string"
            ]
          },
          "email_auth": {
            "dkim": "string",
            "dkim_domain": "string",
            "dkim_signature": "string",
            "dmarc": "string",
            "dmarc_override": "string",
            "dmarc_policy": "string",
            "spf": "string"
          },
          "kill_chain": [
            {
              "phase": "string",
              "phase_id": 0
            }
          ],
          "location": {
            "city": "string",
            "continent": "string",
            "coordinates": [
              0.1
            ],
            "country": "string",
            "desc": "string",
            "geohash": "string",
            "is_on_premises": true,
            "isp": "string",
            "lat": 0.1,
            "long": 0.1,
            "postal_code": "string",
            "provider": "string",
            "region": "string"
          },
          "name": "string",
          "signatures": [
            {
              "algorithm": "string",
              "algorithm_id": 0,
              "certificate": {
                "created_time": 0,
                "created_time_dt": "2019-08-24T14:15:22Z",
                "expiration_time": 0,
                "expiration_time_dt": "2019-08-24T14:15:22Z",
                "fingerprints": [
                  null
                ],
                "is_self_signed": true,
                "issuer": "string",
                "serial_number": "string",
                "subject": "string",
                "uid": "string",
                "version": "string"
              },
              "created_time": 0,
              "created_time_dt": "2019-08-24T14:15:22Z",
              "developer_uid": "string",
              "digest": {
                "algorithm": "string",
                "algorithm_id": 0,
                "value": "string"
              },
              "state": "string",
              "state_id": 0
            }
          ],
          "src_url": "string",
          "subdomains": [
            "string"
          ],
          "tlp": "string",
          "type": "string",
          "type_id": 0,
          "uid": "string",
          "value": "string",
          "vendor_name": "string",
          "vulnerabilities": [
            {
              "affected_code": [
                {}
              ],
              "affected_packages": [
                {}
              ],
              "cve": {
                "created_time": 0,
                "created_time_dt": "2019-08-24T14:15:22Z",
                "cvss": [
                  null
                ],
                "cwe": {},
                "cwe_uid": "string",
                "cwe_url": "string",
                "desc": "string",
                "epss": {},
                "modified_time": 0,
                "modified_time_dt": "2019-08-24T14:15:22Z",
                "product": {},
                "references": [
                  null
                ],
                "title": "string",
                "type": "string",
                "uid": "string"
              },
              "cwe": {
                "caption": "string",
                "src_url": "string",
                "uid": "string"
              },
              "desc": "string",
              "first_seen_time": 0,
              "first_seen_time_dt": "2019-08-24T14:15:22Z",
              "fix_available": true,
              "is_exploit_available": true,
              "is_fix_available": true,
              "kb_article_list": [
                {}
              ],
              "kb_articles": [
                "string"
              ],
              "last_seen_time": 0,
              "last_seen_time_dt": "2019-08-24T14:15:22Z",
              "packages": [
                {}
              ],
              "references": [
                "string"
              ],
              "related_vulnerabilities": [
                "string"
              ],
              "remediation": {
                "desc": "string",
                "kb_article_list": [
                  null
                ],
                "kb_articles": [
                  null
                ],
                "references": [
                  null
                ]
              },
              "severity": "string",
              "title": "string",
              "vendor_name": "string"
            }
          ],
          "whois": {
            "autonomous_system": {
              "name": "string",
              "number": 0
            },
            "created_time": 0,
            "created_time_dt": "2019-08-24T14:15:22Z",
            "dnssec_status": "string",
            "dnssec_status_id": 0,
            "domain": "string",
            "domain_contacts": [
              {
                "email_addr": "string",
                "location": {
                  "coordinates": []
                },
                "name": "string",
                "phone_number": "string",
                "type": "string",
                "type_id": 0,
                "uid": "string"
              }
            ],
            "email_addr": "string",
            "last_seen_time": 0,
            "last_seen_time_dt": "2019-08-24T14:15:22Z",
            "name_servers": [
              "string"
            ],
            "phone_number": "string",
            "registrar": "string",
            "status": "string",
            "subdomains": [
              "string"
            ],
            "subnet": "string"
          }
        }
      ],
      "policy": {
        "desc": "string",
        "group": {
          "desc": "string",
          "domain": "string",
          "name": "string",
          "privileges": [
            "string"
          ],
          "type": "string",
          "uid": "string"
        },
        "is_applied": true,
        "name": "string",
        "uid": "string",
        "version": "string"
      },
      "raw_data": "string",
      "severity": "string",
      "severity_id": 0,
      "src_endpoint": {
        "agent_list": [
          {
            "name": "string",
            "type": "string",
            "type_id": 0,
            "uid": "string",
            "uid_alt": "string",
            "vendor_name": "string",
            "version": "string"
          }
        ],
        "autonomous_system": {
          "name": "string",
          "number": 0
        },
        "container": {
          "hash": {
            "algorithm": "string",
            "algorithm_id": 0,
            "value": "string"
          },
          "image": {
            "labels": [
              "string"
            ],
            "name": "string",
            "path": "string",
            "tag": "string",
            "uid": "string"
          },
          "name": "string",
          "network_driver": "string",
          "orchestrator": "string",
          "pod_uuid": "string",
          "runtime": "string",
          "size": 0,
          "tag": "string",
          "uid": "string"
        },
        "domain": "string",
        "hostname": "string",
        "hw_info": {
          "bios_date": "string",
          "bios_manufacturer": "string",
          "bios_uid": "string",
          "bios_ver": "string",
          "chassis": "string",
          "cpu_bits": 0,
          "cpu_cores": 0,
          "cpu_count": 0,
          "cpu_speed": 0,
          "cpu_type": "string",
          "desktop_display": {
            "color_depth": 0,
            "physical_height": 0,
            "physical_orientation": 0,
            "physical_width": 0,
            "scale_factor": 0
          },
          "keyboard_info": {
            "function_keys": 0,
            "ime": "string",
            "keyboard_layout": "string",
            "keyboard_subtype": 0,
            "keyboard_type": "string"
          },
          "ram_size": 0,
          "serial_number": "string"
        },
        "instance_uid": "string",
        "interface_name": "string",
        "interface_uid": "string",
        "intermediate_ips": [
          "string"
        ],
        "ip": "string",
        "location": {
          "city": "string",
          "continent": "string",
          "coordinates": [
            0.1
          ],
          "country": "string",
          "desc": "string",
          "geohash": "string",
          "is_on_premises": true,
          "isp": "string",
          "lat": 0.1,
          "long": 0.1,
          "postal_code": "string",
          "provider": "string",
          "region": "string"
        },
        "mac": "string",
        "name": "string",
        "namespace_pid": 0,
        "os": {
          "build": "string",
          "country": "string",
          "cpe_name": "string",
          "cpu_bits": 0,
          "edition": "string",
          "lang": "string",
          "name": "string",
          "sp_name": "string",
          "sp_ver": 0,
          "type": "string",
          "type_id": 0,
          "version": "string"
        },
        "owner": {
          "account": {
            "labels": [
              "string"
            ],
            "name": "string",
            "type": "string",
            "type_id": 0,
            "uid": "string"
          },
          "credential_uid": "string",
          "domain": "string",
          "email_addr": "string",
          "full_name": "string",
          "groups": [
            {
              "desc": "string",
              "domain": "string",
              "name": "string",
              "privileges": [
                "string"
              ],
              "type": "string",
              "uid": "string"
            }
          ],
          "ldap_person": {
            "cost_center": "string",
            "created_time": 0,
            "created_time_dt": "2019-08-24T14:15:22Z",
            "deleted_time": 0,
            "deleted_time_dt": "2019-08-24T14:15:22Z",
            "email_addrs": [
              "string"
            ],
            "employee_uid": "string",
            "given_name": "string",
            "hire_time": 0,
            "hire_time_dt": "2019-08-24T14:15:22Z",
            "job_title": "string",
            "labels": [
              "string"
            ],
            "last_login_time": 0,
            "last_login_time_dt": "2019-08-24T14:15:22Z",
            "ldap_cn": "string",
            "ldap_dn": "string",
            "leave_time": 0,
            "leave_time_dt": "2019-08-24T14:15:22Z",
            "location": {
              "city": "string",
              "continent": "string",
              "coordinates": [
                0.1
              ],
              "country": "string",
              "desc": "string",
              "geohash": "string",
              "is_on_premises": true,
              "isp": "string",
              "lat": 0.1,
              "long": 0.1,
              "postal_code": "string",
              "provider": "string",
              "region": "string"
            },
            "manager": {},
            "modified_time": 0,
            "modified_time_dt": "2019-08-24T14:15:22Z",
            "office_location": "string",
            "surname": "string"
          },
          "mfa_status": "string",
          "mfa_status_id": 0,
          "name": "string",
          "org": {
            "name": "string",
            "ou_name": "string",
            "ou_uid": "string",
            "uid": "string"
          },
          "privileges": [
            "string"
          ],
          "risk_level": "string",
          "risk_level_id": 0,
          "risk_score": 0,
          "type": "string",
          "type_id": 0,
          "uid": "string",
          "uid_alt": "string",
          "user_status": "string",
          "user_status_id": 0
        },
        "port": 0,
        "proxy_endpoint": {
          "agent_list": [
            {
              "name": "string",
              "type": "string",
              "type_id": 0,
              "uid": "string",
              "uid_alt": "string",
              "vendor_name": "string",
              "version": "string"
            }
          ],
          "autonomous_system": {
            "name": "string",
            "number": 0
          },
          "container": {
            "hash": {
              "algorithm": "string",
              "algorithm_id": 0,
              "value": "string"
            },
            "image": {
              "labels": [
                "string"
              ],
              "name": "string",
              "path": "string",
              "tag": "string",
              "uid": "string"
            },
            "name": "string",
            "network_driver": "string",
            "orchestrator": "string",
            "pod_uuid": "string",
            "runtime": "string",
            "size": 0,
            "tag": "string",
            "uid": "string"
          },
          "domain": "string",
          "hostname": "string",
          "hw_info": {
            "bios_date": "string",
            "bios_manufacturer": "string",
            "bios_uid": "string",
            "bios_ver": "string",
            "chassis": "string",
            "cpu_bits": 0,
            "cpu_cores": 0,
            "cpu_count": 0,
            "cpu_speed": 0,
            "cpu_type": "string",
            "desktop_display": {
              "color_depth": 0,
              "physical_height": 0,
              "physical_orientation": 0,
              "physical_width": 0,
              "scale_factor": 0
            },
            "keyboard_info": {
              "function_keys": 0,
              "ime": "string",
              "keyboard_layout": "string",
              "keyboard_subtype": 0,
              "keyboard_type": "string"
            },
            "ram_size": 0,
            "serial_number": "string"
          },
          "instance_uid": "string",
          "interface_name": "string",
          "interface_uid": "string",
          "intermediate_ips": [
            "string"
          ],
          "ip": "string",
          "location": {
            "city": "string",
            "continent": "string",
            "coordinates": [
              0.1
            ],
            "country": "string",
            "desc": "string",
            "geohash": "string",
            "is_on_premises": true,
            "isp": "string",
            "lat": 0.1,
            "long": 0.1,
            "postal_code": "string",
            "provider": "string",
            "region": "string"
          },
          "mac": "string",
          "name": "string",
          "namespace_pid": 0,
          "os": {
            "build": "string",
            "country": "string",
            "cpe_name": "string",
            "cpu_bits": 0,
            "edition": "string",
            "lang": "string",
            "name": "string",
            "sp_name": "string",
            "sp_ver": 0,
            "type": "string",
            "type_id": 0,
            "version": "string"
          },
          "owner": {
            "account": {
              "labels": [
                "string"
              ],
              "name": "string",
              "type": "string",
              "type_id": 0,
              "uid": "string"
            },
            "credential_uid": "string",
            "domain": "string",
            "email_addr": "string",
            "full_name": "string",
            "groups": [
              {
                "desc": "string",
                "domain": "string",
                "name": "string",
                "privileges": [
                  null
                ],
                "type": "string",
                "uid": "string"
              }
            ],
            "ldap_person": {
              "cost_center": "string",
              "created_time": 0,
              "created_time_dt": "2019-08-24T14:15:22Z",
              "deleted_time": 0,
              "deleted_time_dt": "2019-08-24T14:15:22Z",
              "email_addrs": [
                "string"
              ],
              "employee_uid": "string",
              "given_name": "string",
              "hire_time": 0,
              "hire_time_dt": "2019-08-24T14:15:22Z",
              "job_title": "string",
              "labels": [
                "string"
              ],
              "last_login_time": 0,
              "last_login_time_dt": "2019-08-24T14:15:22Z",
              "ldap_cn": "string",
              "ldap_dn": "string",
              "leave_time": 0,
              "leave_time_dt": "2019-08-24T14:15:22Z",
              "location": {
                "city": "string",
                "continent": "string",
                "coordinates": [
                  null
                ],
                "country": "string",
                "desc": "string",
                "geohash": "string",
                "is_on_premises": true,
                "isp": "string",
                "lat": 0.1,
                "long": 0.1,
                "postal_code": "string",
                "provider": "string",
                "region": "string"
              },
              "manager": {},
              "modified_time": 0,
              "modified_time_dt": "2019-08-24T14:15:22Z",
              "office_location": "string",
              "surname": "string"
            },
            "mfa_status": "string",
            "mfa_status_id": 0,
            "name": "string",
            "org": {
              "name": "string",
              "ou_name": "string",
              "ou_uid": "string",
              "uid": "string"
            },
            "privileges": [
              "string"
            ],
            "risk_level": "string",
            "risk_level_id": 0,
            "risk_score": 0,
            "type": "string",
            "type_id": 0,
            "uid": "string",
            "uid_alt": "string",
            "user_status": "string",
            "user_status_id": 0
          },
          "port": 0,
          "proxy_endpoint": {},
          "subnet_uid": "string",
          "svc_name": "string",
          "type": "string",
          "type_id": 0,
          "uid": "string",
          "vlan_uid": "string",
          "vpc_uid": "string",
          "zone": "string"
        },
        "subnet_uid": "string",
        "svc_name": "string",
        "type": "string",
        "type_id": 0,
        "uid": "string",
        "vlan_uid": "string",
        "vpc_uid": "string",
        "zone": "string"
      },
      "start_time": 0,
      "start_time_dt": "2019-08-24T14:15:22Z",
      "status": "string",
      "status_code": "string",
      "status_detail": "string",
      "status_id": 0,
      "time": 0,
      "time_dt": "2019-08-24T14:15:22Z",
      "timezone_offset": 0,
      "type_name": "string",
      "type_uid": 0,
      "unmapped": {},
      "user": {
        "account": {
          "labels": [
            "string"
          ],
          "name": "string",
          "type": "string",
          "type_id": 0,
          "uid": "string"
        },
        "credential_uid": "string",
        "domain": "string",
        "email_addr": "string",
        "full_name": "string",
        "groups": [
          {
            "desc": "string",
            "domain": "string",
            "name": "string",
            "privileges": [
              "string"
            ],
            "type": "string",
            "uid": "string"
          }
        ],
        "ldap_person": {
          "cost_center": "string",
          "created_time": 0,
          "created_time_dt": "2019-08-24T14:15:22Z",
          "deleted_time": 0,
          "deleted_time_dt": "2019-08-24T14:15:22Z",
          "email_addrs": [
            "string"
          ],
          "employee_uid": "string",
          "given_name": "string",
          "hire_time": 0,
          "hire_time_dt": "2019-08-24T14:15:22Z",
          "job_title": "string",
          "labels": [
            "string"
          ],
          "last_login_time": 0,
          "last_login_time_dt": "2019-08-24T14:15:22Z",
          "ldap_cn": "string",
          "ldap_dn": "string",
          "leave_time": 0,
          "leave_time_dt": "2019-08-24T14:15:22Z",
          "location": {
            "city": "string",
            "continent": "string",
            "coordinates": [
              0.1
            ],
            "country": "string",
            "desc": "string",
            "geohash": "string",
            "is_on_premises": true,
            "isp": "string",
            "lat": 0.1,
            "long": 0.1,
            "postal_code": "string",
            "provider": "string",
            "region": "string"
          },
          "manager": {},
          "modified_time": 0,
          "modified_time_dt": "2019-08-24T14:15:22Z",
          "office_location": "string",
          "surname": "string"
        },
        "mfa_status": "string",
        "mfa_status_id": 0,
        "name": "string",
        "org": {
          "name": "string",
          "ou_name": "string",
          "ou_uid": "string",
          "uid": "string"
        },
        "privileges": [
          "string"
        ],
        "risk_level": "string",
        "risk_level_id": 0,
        "risk_score": 0,
        "type": "string",
        "type_id": 0,
        "uid": "string",
        "uid_alt": "string",
        "user_status": "string",
        "user_status_id": 0
      },
      "user_result": {
        "account": {
          "labels": [
            "string"
          ],
          "name": "string",
          "type": "string",
          "type_id": 0,
          "uid": "string"
        },
        "credential_uid": "string",
        "domain": "string",
        "email_addr": "string",
        "full_name": "string",
        "groups": [
          {
            "desc": "string",
            "domain": "string",
            "name": "string",
            "privileges": [
              "string"
            ],
            "type": "string",
            "uid": "string"
          }
        ],
        "ldap_person": {
          "cost_center": "string",
          "created_time": 0,
          "created_time_dt": "2019-08-24T14:15:22Z",
          "deleted_time": 0,
          "deleted_time_dt": "2019-08-24T14:15:22Z",
          "email_addrs": [
            "string"
          ],
          "employee_uid": "string",
          "given_name": "string",
          "hire_time": 0,
          "hire_time_dt": "2019-08-24T14:15:22Z",
          "job_title": "string",
          "labels": [
            "string"
          ],
          "last_login_time": 0,
          "last_login_time_dt": "2019-08-24T14:15:22Z",
          "ldap_cn": "string",
          "ldap_dn": "string",
          "leave_time": 0,
          "leave_time_dt": "2019-08-24T14:15:22Z",
          "location": {
            "city": "string",
            "continent": "string",
            "coordinates": [
              0.1
            ],
            "country": "string",
            "desc": "string",
            "geohash": "string",
            "is_on_premises": true,
            "isp": "string",
            "lat": 0.1,
            "long": 0.1,
            "postal_code": "string",
            "provider": "string",
            "region": "string"
          },
          "manager": {},
          "modified_time": 0,
          "modified_time_dt": "2019-08-24T14:15:22Z",
          "office_location": "string",
          "surname": "string"
        },
        "mfa_status": "string",
        "mfa_status_id": 0,
        "name": "string",
        "org": {
          "name": "string",
          "ou_name": "string",
          "ou_uid": "string",
          "uid": "string"
        },
        "privileges": [
          "string"
        ],
        "risk_level": "string",
        "risk_level_id": 0,
        "risk_score": 0,
        "type": "string",
        "type_id": 0,
        "uid": "string",
        "uid_alt": "string",
        "user_status": "string",
        "user_status_id": 0
      }
    }
  ]'

Responses

Response
No content

Query Events

Request

Queries events from the SIEM configured with the token used for authentication.

Query
cursorstring or null

Cursor to use to retrieve the next page of results.

limitinteger or null

Number of Account objects to return in this page. Defaults to 100.

orderArray of strings or null

Select a field to order the results by. Defaults to time. To control the direction of the sorting, append [asc] or [desc] to the field name. For example, name[desc] will sort the results by name in descending order. The ordering defaults to asc if not specified. May be used multiple times to order by multiple fields, and the ordering is applied in the order the fields are specified.

filterArray of strings or null

Filter results by this query. For more information on filtering, refer to our Filtering Guide. Defaults to no filter. If used more than once, the queries are ANDed together.

metaArray of strings or null

Add metadata to the response by invoking meta functions. Documentation for meta functions is available at https://docs.synqly.com/api-reference/meta-functions. Not all meta function are available at every endpoint.

passthrough-paramArray of strings or null

Provider-specific query to pass through to the SIEM. This is useful for advanced queries that are not supported by the API. The keys and values are provider-specific. For example, to perform a specific query in Rapid7 IDR, you can use the query: "{advanced query}" key-value pair.

include_raw_databoolean or null

Include the raw data from the SIEM in the response. This is useful for debugging and troubleshooting. Defaults to false.

curl -i -X GET \
  'https://api.synqly.com/v1/siem/events?cursor=string&filter=string&include_raw_data=true&limit=0&meta=string&order=string&passthrough-param=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Bodyapplication/json
resultArray of objectsrequired

List of events

result[].​property name*anyadditional property
cursorstringrequired

Cursor to use to retrieve the next page of results

statusstring(QueryStatus)required
Enum"PENDING""COMPLETE"
metaobject(MetaResponse)
Response
application/json
{ "result": [ {} ], "cursor": "string", "meta": { "stats": {}, "api": {} }, "status": "PENDING" }

Sink

Operations

Storage

Operations

Ticketing

Operations

Vulnerabilities

Operations