Skip to main content

Generic API Event Collector (Beta)

This Integration is part of the GenericAPIEventCollector Pack.#

Supported versions

Supported Cortex XSOAR versions: 6.8.0 and later.

beta

This is a beta Integration, which lets you implement and test pre-release software. Since the integration is beta, it might contain bugs. Updates to the integration during the beta phase might include non-backward compatible features. We appreciate your feedback on the quality and usability of the integration to help us identify issues, fix them, and continually improve.

The Generic API Event Collector allows you to ingest data from any API endpoint into Cortex. By configuring this collector, you can gather data from various systems and bring it into the Cortex ecosystem for better analysis and correlation.

Note: This pack is currently in Beta, and as such, it may be subject to future changes and may not work on all types of APIs and Authentication.

This is the default integration for this content pack when configured by the Data Onboarder in Cortex XSIAM.

Configure Generic API Event Collector (Beta) in Cortex#

ParameterDescriptionRequired
Server URLTrue
EndpointAdd the endpoint you want to collect data from (Alert/Events etc.).True
Authentication TypeSelect the authentication method.True
HTTP MethodThe HTTP method of the request to the API.True
API TokenAPI Key to access the service REST API.False
UsernameUsername & Password to use for basic authentication.False
PasswordFalse
Add Fields To headerIf the product authentication requires more fields to add to the header add it here in dictionary format {unique_field : 286}. If there's a need to add more then one, use it in this format: {'field-1': value_example, 'field-2': value_2, 'field-3': value_3}False
Use system proxy settingsFalse
Trust any certificate (not secure)False
VendorEnter vendor name for dataset.True
ProductEnter product name for dataset.True
Request dataIf the product authentication requires more fields to add to the DATA add it here in dictionary format {unique_field : 286}. If there's a need to add more then one, use it in this format: {'field-1': value_example, 'field-2': value_2, 'field-3': value_3}False
Initial request dataIf the product requires a different initial DATA, add it here in dictionary format {unique_field : 286}. If there's a need to add more then one, use it in this format: {'field-1': value_example, 'field-2': value_2, 'field-3': value_3}False
Request JSON parametersIf the product authentication requires more fields to add to the body as JSON add it here in dictionary format {unique_field : 286}. If there's a need to add more then one, use it in this format: {'field-1': value_example, 'field-2': value_2, 'field-3': value_3}False
Initial request JSON parametersIf the product requires a different initial request JSON, add it here in dictionary format {unique_field : 286}. If there's a need to add more then one, use it in this format: {'field-1': value_example, 'field-2': value_2, 'field-3': value_3}False
Query parametersIf the product authentication allows to filter the results using query Parameters add it here in dictionary format {unique_field : 286}. If there's a need to add more then one, use it in this format: {'field-1': value_example, 'field-2': value_2, 'field-3': value_3}False
Initial query parametersIf the product requires a different initial query parameters for the first fetch call, add it here in dictionary format {unique_field : 286}. If there's a need to add more then one, use it in this format: {'field-1': value_example, 'field-2': value_2, 'field-3': value_3}False
Is pagination neededIf the API JSON response supports events pagination.
Pagination field nameNext page field in JSON response, e.g., "cursor", "next_page"False
Pagination flagNext page existence in JSON response e.g., "has_more", "next"False
Timestamp format of the event creation time or "epoch".Python compatible datetime formatting (e.g. ,"%Y-%m-%dT%H:%M:%S.%fZ" or "%Y.%m.%d %H:%M:%S") or "epoch" to use UNIX epoch time.False
Timestamp fieldThe name of the event creation time in the response data, e.g., "timestamp" or "created_at".True
Events lookup path in the response JSON, dot-separated, e.g., "data.items".Where within the response object to find the events list.False
Event ID lookup path in the event response JSON, dot-separated, e.g., "id".Where within the event object to find the event ID.False
The type of ID field, either "integer" or "string"ID field of type integer are comparable and when last fetched ID is the maximum ID between the fetched events, when the type is string, the last fetched ID is the last event returned from the API.False
OK codesAllowed HTTP status codes for successful response from the APIFalse
LimitNumber of incidents to fetch per fetch.False
Fetch EventsFalse
Events Fetch IntervalFalse

How to configure the event collector#


Authentication#

You must specify the authentication method required by the server. The supported authentication types include:

  • Basic authentication (username and password)
  • Token-based authentication
  • Bearer token
  • Api-Key token
  • Raw Token (for custom token-based authentication)
  • No Authorization (for publicly accessible data)

Pagination#

When the API supports pagination in the response, the collector can fetch more pages of data using the following parameters:

  • Is pagination needed If the API JSON response supports events pagination.
  • Pagination field name, Next page field in JSON response, e.g., "cursor" or "next_page" | False |
  • Pagination flag, The Next page existence in JSON response e.g., "has_more" or "next"

In the below example the pagination flag is pagination.has_more The pagination field name is pagination.next_page

{
"data": [
{
"id": 1,
"name": "John Doe",
"occupation": "Software Engineer"
},
{
"id": 2,
"name": "Jane Smith",
"occupation": "Data Scientist"
}
],
"pagination": {
"current_page": 1,
"next_page": "https://api.example.com/users?page=2",
"has_more": true
}
}

Request Data (And initial request data)#

If the product authentication requires more fields to add to the DATA. Add it here in dictionary format.

For example:

{"field-1": "value_example", "field-2": 1, "field-3": "value_3"}

Note: Using the initial request data parameter will only be used in the first request to collect events.

Request JSON (And initial request JSON)#

If the product authentication requires more fields to add to the body as JSON, add it here in dictionary format.

For example:

{"date": "2021-08-01", "field-2": 1, "field-3": "value_3"}

Note: Using the initial request JSON parameter will only be used in the first request to collect events.

Query parameters (And Initial Query parameters)#

If the product authentication allows filtering the results using query parameters, add it here in dictionary format:

{"ordering": "id", "limit": 1, "created_after": "@first_fetch_datetime"}

Note: Using the initial query parameters parameter will only be used in the first request to collect events.

Timestamp field#

The name of the event creation time in the response data, e.g., "timestamp" or "created_at". In the following API response:

{
"data": [
{
"id": 3,
"name": "Alice Brown",
"occupation": "Network Engineer",
"created": "2021-10-05T19:45:20.789012Z"
},
{
"id": 4,
"name": "Dave Wilson",
"occupation": "Cybersecurity Analyst",
"created": "2021-10-06T10:15:45.654321Z"
}
],
"pagination": {
"current_page": 2,
"next_page": "https://api.example.com/users?page=3",
"has_more": true
}
}

the timestamp field is created

Timestamp format#

The timestamp format of the event creation time or "epoch" to use UNIX epoch time. The formatting supported is Python-compatible datetime formatting (e.g., "%Y-%m-%dT%H:%M:%S.%fZ" or "%Y.%m.%d %H:%M:%S"). In the following API response:

{
"data": [
{
"id": 3,
"name": "Alice Brown",
"occupation": "Network Engineer",
"created": "2021-10-05T19:45:20.789012Z"
},
{
"id": 4,
"name": "Dave Wilson",
"occupation": "Cybersecurity Analyst",
"created": "2021-10-06T10:15:45.654321Z"
}
],
"pagination": {
"current_page": 2,
"next_page": "https://api.example.com/users?page=3",
"has_more": true
}
}

The timestamp format is python format "%Y-%m-%dT%H:%M:%S.%fZ"

Note: To learn more about Python date and time formats, see: https://docs.python.org/3/library/datetime.html#format-codes

Events#

Where within the response JSON to search for the events, dot-separated (e.g., "data.items").

Example 1:

{
"data": [
{
"id": 4,
"name": "Alice Brown",
"occupation": "Network Engineer",
"created": "2021-10-05T19:45:20.789012Z"
},
{
"id": 3,
"name": "Dave Wilson",
"occupation": "Cybersecurity Analyst",
"created": "2021-10-06T10:15:45.654321Z"
}
]
}

The events are within the "data" in the response.

Example 2:

{
"data": {
"items": [
{
"id": 4,
"name": "Alice Brown",
"occupation": "Network Engineer",
"created": "2021-10-05T19:45:20.789012Z"
},
{
"id": 3,
"name": "Dave Wilson",
"occupation": "Cybersecurity Analyst",
"created": "2021-10-06T10:15:45.654321Z"
}
]
}
}

The events are within the "data.items" in the response.

Event ID & Type#

Event ID lookup path in the event response JSON, dot-separated, e.g., "id" Where within the event object to find the event ID.

The type of ID field, either "integer" or "string":

  • ID field of type integer is comparable, and when last fetched ID is the maximum ID between the fetched events.
  • ID field of the type is string, the last fetched ID is the last event returned from the API.

Example 1:

{
"data": [
{
"id": 4,
"name": "Alice Brown",
"occupation": "Network Engineer",
"created": "2021-10-05T19:45:20.789012Z"
},
{
"id": 3,
"name": "Dave Wilson",
"occupation": "Cybersecurity Analyst",
"created": "2021-10-06T10:15:45.654321Z"
}
],
"pagination": {
"current_page": 2,
"next_page": "https://api.example.com/users?page=3",
"has_more": true
}
}

The event ID field should be "id" and the type should be integer, and the last fetched ID will be 4.

Example 2:

{
"data": [
{
"uuid": "123e4567-e89b-12d3-a456-426614174000",
"name": "Alice Brown",
"occupation": "Network Engineer",
"created": "2021-10-05T19:45:20.789012Z"
},
{
"uuid": "123e4567-e89b-12d3-a456-426614174001",
"name": "Dave Wilson",
"occupation": "Cybersecurity Analyst",
"created": "2021-10-06T10:15:45.654321Z"
}
],
"pagination": {
"current_page": 2,
"next_page": "https://api.example.com/users?page=3",
"has_more": true
}
}

The event ID field should be "uuid" and the type should be string, and the last fetched ID will be "123e4567-e89b-12d3-a456-426614174001".

Substitutions in API requests calls#

To make the API calls more dynamic against the API endpoint, we added a few placeholders that will be substituted before calling the API endpoint.

  • @last_fetched_id - The last ID that was fetched from the API, if this is the first fetch, the value will be empty.
  • @last_fetched_datetime - The last fetched event time from the API, if this is the first fetch, the value will be empty.
  • @first_fetch_datetime - The first fetch time, when the integration first started to fetch events.
  • @fetch_size_limit - The number of incidents to fetch per fetch.

Examples being used in query parameters:

  • This will substitute the @last_fetched_id with the last fetched ID from a previous fetch call.
{"ordering": "id", "limit": 100, "id__gt": "@last_fetched_id"}

The resulting API query parameters will be:

{"ordering": "id", "limit": 100, "id__gt": "4"}
  • This will substitute the @first_fetch_datetime with the first fetch time.
{"ordering": "id", "limit": 1, "created_after": "@first_fetch_datetime"}

The resulting API query parameters will be:

{"ordering": "id", "limit": 1, "created_after": "2021-10-06T10:15:45.654321Z"}

Commands#

You can execute these commands from the CLI, as part of an automation, or in a playbook. After you successfully execute a command, a DBot message appears in the War Room with the command details.

generic-api-event-collector-get-events#


Gets events from 3rd-party vendor.

Base Command#

generic-api-event-collector-get-events

Input#

Argument NameDescriptionRequired
should_push_eventsIf true, the command will create events, otherwise it will only display them. Possible values are: true, false. Default is false.Required
limitMaximum number of results to return.Optional

Context Output#

There is no context output for this command.