Skip to content

IOC

The IOC service collection provides operations for managing custom Indicators of Compromise (IOC) within your CrowdStrike environment. Create, update, delete, and search for indicators. Query aggregates, retrieve action and type information, and look up device and process data associated with custom IOCs.

LanguageLast Update
Pythonv1.6.5
PowerShellv2.2.9
Gov0.22.0
TypeScriptv0.6.0
Rustv0.7.1
Rubyv1.4.0


OperationDescription
action.get.v1
action_get
Get Actions by ids.
action.query.v1
action_query
Query Actions.
GetIndicatorsReport
get_indicators_report
Launch an indicators report creation job
indicator.aggregate.v1
indicator_aggregate
Get Indicators aggregates as specified via json in the request body.
indicator.combined.v1
indicator_combined
Get Combined for Indicators.
indicator.create.v1
indicator_create
Create Indicators.
indicator.delete.v1
indicator_delete
Delete Indicators by ids.
indicator.get.device_count.v1
devices_count
Get the number of devices the indicator has run on
indicator.get.devices_ran_on.v1
devices_ran_on
Get the IDs of devices the indicator has run on
indicator.get.processes_ran_on.v1
processes_ran_on
Get the number of processes the indicator has run on
indicator.get.v1
indicator_get
Get Indicators by ids.
indicator.sdmf-query.v1
indicator_sdmf_query_v1
Executes an SDMF data frame query against IOC indicators
indicator.search.v1
indicator_search
Search for Indicators.
indicator.update.v1
indicator_update
Update Indicators.
ioc_type.query.v1
ioc_type_query
Query IOC Types.
platform.query.v1
platform_query
Query Platforms.
severity.query.v1
severity_query
Query Severities.

Get Actions by ids.

Method GET
Route /iocs/entities/actions/v1
Scope IOC Management: READ
PEP 8 action_get
ids query · string or list of strings
The ids of the Actions to retrieve
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.action_get(ids=id_list)
print(response)
[
{
"id": "string",
"platforms_by_type": {},
"severities": []
}
]


Query Actions.

Method GET
Route /iocs/queries/actions/v1
Scope IOC Management: READ
PEP 8 action_query
offset query · string
Starting index of overall result set from which to return ids.
limit query · integer
Number of ids to return.
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.action_query(limit=integer, offset="string")
print(response)
[
"string"
]


Launch an indicators report creation job

Method POST
Route /iocs/entities/indicators-reports/v1
Scope IOC Management: READ
PEP 8 get_indicators_report
body body · dictionary
Full body payload as JSON formatted dictionary.
from_parent body · boolean
Flag indicating if this indicator is defined in the parent.
report_format body · string
Format of the report.
search body · object
Search parameters. Strings are in FQL format.
filter body · string
FQL formatted string specifying the search filter. Overridden if ‘search’ keyword is provided.
query body · string
FQL formatted string specifying the search query. Overridden if ‘search’ keyword is provided.
sort body · string
FQL formatted string specifying the search sort. Overridden if ‘search’ keyword is provided.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
search = {
"filter": "string",
"query": "string",
"sort": "string"
}
response = falcon.get_indicators_report(filter="string",
from_parent=boolean,
query="string",
report_format="string",
search=search,
sort="string")
print(response)
{}


Get Indicators aggregates as specified via json in the request body.

Method POST
Route /iocs/aggregates/indicators/v1
Scope IOC Management: READ
PEP 8 indicator_aggregate
body body · dictionary
Full body payload as JSON formatted dictionary.
date_ranges body · array
If peforming a date range query specify the from and to date ranges. These can be in common date formats like 2019-07-18 or now.
exclude body · string
Fields to exclude.
extended_bounds body · object
field body · string
Term you want to aggregate on. If doing a date_range query, this is the date field you want to apply the date ranges to.
filters_spec body · object
from body · integer
include body · string
Fields to include.
interval body · string
Available values (6)
yearmonthweek
dayhourminute
max_doc_count body · integer
Maximum number of documents.
min_doc_count body · integer
Minimum number of documents.
missing body · string
name body · string
Scan name.
percents body · array
q body · string
FQL syntax.
ranges body · array
size body · integer
sort body · string
FQL syntax.
Available values (2)
_count
sort by document count
_term
sort by the string value alphabetically
sub_aggregates body · array
time_zone body · string
type body · string
Available values (10)
date_histogram
Aggregates counts on a specified time interval. Requires use of “interval” field.
date_range
Aggregates counts on custom defined date range buckets. Can include multiple ranges. (Similar to time series, but the bucket sizes are variable). Date formats to follow ISO 8601.
terms
Buckets alerts by the value of a specified field. For example, if field used is scenario, then alerts will be bucketed by the various alert scenario names.
range
Buckets alerts by specified (numeric) ranges of a specified field. For example, if doing a range aggregation on the max_severity field, the alerts will be counted by the specified ranges of severity.
cardinality
Returns the count of distinct values in a specified field.
max
Returns the maximum value of a specified field.
min
Returns the minimum value of a specified field.
avg
Returns the average value of the specified field.
sum
Returns the total sum of all values for the specified field.
percentiles
Returns the following percentiles for the specified field: 1, 5, 25, 50, 75, 95, 99.
filter query · string
FQL syntax formatted string to use to filter the results.
from_parent query · boolean
The filter for returning either only indicators for the request customer or its MSSP parents
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
date_ranges = [
{
"from": "string",
"to": "string"
}
]
ranges = [
{
"From": 0,
"To": 0
}
]
response = falcon.indicator_aggregate(date_ranges=date_ranges,
exclude="string",
field="string",
filter="string",
from=integer,
include="string",
interval="string",
max_doc_count=integer,
min_doc_count=integer,
missing="string",
name="string",
q="string",
ranges=ranges,
size=integer,
sort="string",
sub_aggregates=["string"],
time_zone="string",
type="string")
print(response)
[
{
"buckets": [],
"doc_count_error_upper_bound": 0,
"hits": {},
"name": "string",
"sum_other_doc_count": 0
}
]


Get Combined for Indicators.

Method GET
Route /iocs/combined/indicator/v1
Scope IOC Management: READ
PEP 8 indicator_combined
filter query · string
The filter expression that should be used to limit the results.
Available values (15)
typevalueaction
severityplatformstags
expirationexpiredapplied_globally
host_groupscreated_oncreated_by
modified_onmodified_bysource
offset query · integer
The offset to start retrieving records from. Offset and After params are mutually exclusive. If none provided then scrolling will be used by default. To access more than 10k iocs, use the ‘after’ parameter instead of ‘offset’.
limit query · integer
The maximum records to return.
sort query · string
FQL Syntax formatted sort filter.
Available values (18)
actionapplied_globallymetadata.av_hits
metadata.company_name.rawcreated_bycreated_on
expirationexpiredmetadata.filename.raw
modified_bymodified_onmetadata.original_filename.raw
metadata.product_name.rawmetadata.product_versionseverity_number
sourcetypevalue
after query · string
A pagination token used with the limit parameter to manage pagination of results. On your first request, don’t provide an ‘after’ token. On subsequent requests, provide the ‘after’ token from the previous response to continue from that place in the results. To access more than 10k indicators, use the ‘after’ parameter instead of ‘offset’.
from_parent query · boolean
The filter for returning either only indicators for the request customer or its MSSP parents
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.indicator_combined(after="string",
filter="string",
from_parent=boolean,
limit=integer,
offset=integer,
sort="string")
print(response)
[
{
"action": "string",
"applied_globally": false,
"created_by": "string",
"created_on": "string",
"deleted": false,
"description": "string",
"expiration": "string",
"expired": false,
"from_parent": false,
"host_groups": [],
"id": "string",
"metadata": {},
"mobile_action": "string",
"modified_by": "string",
"modified_on": "string",
"parent_cid_name": "string",
"platforms": [],
"severity": "string",
"source": "string",
"tags": [],
"type": "string",
"value": "string"
}
]


Create Indicators.

Method POST
Route /iocs/entities/indicators/v1
Scope IOC Management: WRITE
PEP 8 indicator_create
body body · dictionary
Full body payload as JSON formatted dictionary.
comment body · string
Audit log comment for the update.
indicators body · array
List of indicators to create.
retrodetects query · boolean
Whether to submit to retrodetects
ignore_warnings query · boolean
Set to true to ignore warnings and add all IOCs
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
action body · string
Default action for the IOC.
applied_globally body · boolean
Is this IOC applied globally?
description body · string
Description for the IOC.
expiration body · string
UTC formatted date.
filename body · string
Filename to use in the metadata.
host_groups body · list of strings
List of host groups to apply this IOC to.
metadata body · string
Dictionary containing the filename for the IOC. Not required if filename is used.
mobile_action body · string
Action to perform for mobile.
platforms body · string
Platforms this IOC applies to.
severity body · string
Severity this IOC generates.
source body · string
Source of the IOC.
tags body · list of strings
List of Falcon Grouping Tags to apply this IOC to.
type body · string
Type of indicator.
value body · string
Value of the indicator.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
indicators = [
{
"action": "string",
"applied_globally": True,
"description": "string",
"expiration": "2021-10-22T10:40:39.372Z",
"host_groups": [
"string"
],
"metadata": {
"filename": "string"
},
"mobile_action": "string",
"platforms": [
"string"
],
"severity": "string",
"source": "string",
"tags": [
"string"
],
"type": "string",
"value": "string"
}
]
response = falcon.indicator_create(action="string",
applied_globally=boolean,
comment="string",
description="string",
expiration="string",
filename="string",
host_groups=["string"],
ignore_warnings=boolean,
indicators=indicators,
metadata="string",
mobile_action="string",
platforms="string",
retrodetects=boolean,
severity="string",
source="string",
tags=["string"],
type="string",
value="string")
print(response)
[
{
"action": "string",
"applied_globally": false,
"created_by": "string",
"created_on": "string",
"deleted": false,
"description": "string",
"expiration": "string",
"expired": false,
"from_parent": false,
"host_groups": [],
"id": "string",
"metadata": {},
"mobile_action": "string",
"modified_by": "string",
"modified_on": "string",
"parent_cid_name": "string",
"platforms": [],
"severity": "string",
"source": "string",
"tags": [],
"type": "string",
"value": "string"
}
]


Delete Indicators by ids.

Method DELETE
Route /iocs/entities/indicators/v1
Scope IOC Management: WRITE
PEP 8 indicator_delete
filter query · string
The FQL expression to delete Indicators in bulk. If both ‘filter’ and ‘ids’ are provided, then filter takes precedence and ignores ids.
Available values (4)
filteridsfilter
ids
ids query · string or list of strings
The ids of the Indicators to delete. If both ‘filter’ and ‘ids’ are provided, then filter takes precedence and ignores ids
comment query · string
The comment why these indicators were deleted
from_parent query · boolean
The filter for returning either only indicators for the request customer or its MSSP parents
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.indicator_delete(ids=id_list, from_parent=boolean)
print(response)
[
"string"
]


Get the number of devices the indicator has run on

Method GET
Route /iocs/aggregates/indicators/device-count/v1
Scope IOC Management: READ
PEP 8 devices_count
type query · string
The type of the indicator. Valid types include: sha256: A hex-encoded sha256 hash string. Length - min: 64, max: 64. md5: A hex-encoded md5 hash string. Length - min 32, max: 32. domain: A domain name. Length - min: 1, max: 200. ipv4: An IPv4 address. Must be a valid IP address. ipv6: An IPv6 address. Must be a valid IP address.
Available values (5)
sha256
A hex-encoded sha256 hash string. Length - min: 64, max: 64.
md5
A hex-encoded md5 hash string. Length - min 32, max: 32.
domain
A domain name. Length - min: 1, max: 200.
ipv4
An IPv4 address. Must be a valid IP address.
ipv6
An IPv6 address. Must be a valid IP address.
value query · string
The string representation of the indicator
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.devices_count(type="string", value="string")
print(response)
[
{
"device_count": 0,
"limit_exceeded": false,
"type": "string",
"value": "string"
}
]


Get the IDs of devices the indicator has run on

Method GET
Route /iocs/queries/indicators/devices/v1
Scope IOC Management: READ
PEP 8 devices_ran_on
type query · string
The type of the indicator. Valid types include: sha256: A hex-encoded sha256 hash string. Length - min: 64, max: 64. md5: A hex-encoded md5 hash string. Length - min 32, max: 32. domain: A domain name. Length - min: 1, max: 200. ipv4: An IPv4 address. Must be a valid IP address. ipv6: An IPv6 address. Must be a valid IP address.
Available values (5)
sha256
A hex-encoded sha256 hash string. Length - min: 64, max: 64.
md5
A hex-encoded md5 hash string. Length - min 32, max: 32.
domain
A domain name. Length - min: 1, max: 200.
ipv4
An IPv4 address. Must be a valid IP address.
ipv6
An IPv6 address. Must be a valid IP address.
value query · string
The string representation of the indicator
limit query · string
The maximum number of results to return. Use with the offset parameter to manage pagination of results.
offset query · string
The first process to return, where 0 is the latest offset. Use with the limit parameter to manage pagination of results.
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.devices_ran_on(type="string",
limit="string",
offset="string",
value="string")
print(response)
[
"string"
]


Get the number of processes the indicator has run on

Method GET
Route /iocs/queries/indicators/processes/v1
Scope IOC Management: READ
PEP 8 processes_ran_on
type query · string
The type of the indicator. Valid types include: sha256: A hex-encoded sha256 hash string. Length - min: 64, max: 64. md5: A hex-encoded md5 hash string. Length - min 32, max: 32. domain: A domain name. Length - min: 1, max: 200. ipv4: An IPv4 address. Must be a valid IP address. ipv6: An IPv6 address. Must be a valid IP address.
Available values (5)
sha256
A hex-encoded sha256 hash string. Length - min: 64, max: 64.
md5
A hex-encoded md5 hash string. Length - min 32, max: 32.
domain
A domain name. Length - min: 1, max: 200.
ipv4
An IPv4 address. Must be a valid IP address.
ipv6
An IPv6 address. Must be a valid IP address.
value query · string
The string representation of the indicator
device_id query · string
Specify a host’s ID to return only processes from that host. Get a host’s ID from GET /devices/queries/devices/v1, the Falcon console, or the Streaming API.
limit query · string
The maximum number of results to return. Use with the offset parameter to manage pagination of results.
offset query · string
The first process to return, where 0 is the latest offset. Use with the limit parameter to manage pagination of results.
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.processes_ran_on(type="string",
limit="string",
offset="string",
device_id="string",
value="string")
print(response)
[
"string"
]


Get Indicators by ids.

Method GET
Route /iocs/entities/indicators/v1
Scope IOC Management: READ
PEP 8 indicator_get
ids query · string or list of strings
The ids of the Indicators to retrieve
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.indicator_get(ids=id_list)
print(response)
[
{
"action": "string",
"applied_globally": false,
"created_by": "string",
"created_on": "string",
"deleted": false,
"description": "string",
"expiration": "string",
"expired": false,
"from_parent": false,
"host_groups": [],
"id": "string",
"metadata": {},
"mobile_action": "string",
"modified_by": "string",
"modified_on": "string",
"parent_cid_name": "string",
"platforms": [],
"severity": "string",
"source": "string",
"tags": [],
"type": "string",
"value": "string"
}
]


Executes an SDMF data frame query against IOC indicators

Method POST
Route /iocs/sdmf/query/v1
Scope IOC Management: WRITE
PEP 8 indicator_sdmf_query_v1
body body · dictionary
Full body payload as JSON formatted dictionary.
control_info body · object
The control_info value.
id body · string
The id value.
nodes body · array
The nodes value.
res_id body · string
The res_id value.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
control_info = {
"deadline": "string",
"duration": "string",
"execution_context": {
"catalog_version": "string",
"execution_options": "string",
"extensions": "string",
"queried_cids": [
"string"
]
},
"execution_details": {
"driver_calls": "string"
},
"is_export_request": True,
"pagination_info": {
"limit": 0,
"offset": "string"
},
"partial_results": True,
"query_stats": {
"execution_stats": {
"visited_entities": 0,
"visited_relationships": 0
},
"total_hits": {
"relation": "string",
"total": 0
}
},
"store_headers": "string"
}
response = falcon.indicator_sdmf_query_v1(control_info=control_info,
id="string",
nodes=["string"],
res_id="string")
print(response)
[
{}
]


Search for Indicators.

Method GET
Route /iocs/queries/indicators/v1
Scope IOC Management: READ
PEP 8 indicator_search
filter query · string
The filter expression that should be used to limit the results.
Available values (15)
typevalueaction
severityplatformstags
expirationexpiredapplied_globally
host_groupscreated_oncreated_by
modified_onmodified_bysource
offset query · integer
The offset to start retrieving records from. Offset and After params are mutually exclusive. If none provided then scrolling will be used by default. To access more than 10k iocs, use the ‘after’ parameter instead of ‘offset’.
limit query · integer
The maximum records to return.
sort query · string
FQL Syntax formatted sort filter.
Available values (18)
actionapplied_globallymetadata.av_hits
metadata.company_name.rawcreated_bycreated_on
expirationexpiredmetadata.filename.raw
modified_bymodified_onmetadata.original_filename.raw
metadata.product_name.rawmetadata.product_versionseverity_number
sourcetypevalue
after query · string
A pagination token used with the limit parameter to manage pagination of results. On your first request, don’t provide an ‘after’ token. On subsequent requests, provide the ‘after’ token from the previous response to continue from that place in the results. To access more than 10k indicators, use the ‘after’ parameter instead of ‘offset’.
from_parent query · boolean
The filter for returning either only indicators for the request customer or its MSSP parents
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.indicator_search(after="string",
filter="string",
from_parent=boolean,
limit=integer,
offset=integer,
sort="string")
print(response)
[
"string"
]


Update Indicators.

Method PATCH
Route /iocs/entities/indicators/v1
Scope IOC Management: WRITE
PEP 8 indicator_update
body body · dictionary
Full body payload as JSON formatted dictionary.
bulk_update body · object
Dictionary representing the indicator values to update in bulk.
comment body · string
Audit log comment for the update.
indicators body · array
List of indicators to update.
retrodetects query · boolean
Whether to submit to retrodetects
ignore_warnings query · boolean
Set to true to ignore warnings and add all IOCs
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
action body · string
Default action for the IOC.
applied_globally body · boolean
Is this IOC applied globally?
description body · string
Description for the IOC.
expiration body · string
UTC formatted date.
filename body · string
Filename to use in the metadata.
from_parent body · boolean
Flag indicating if this indicator originates from the parent.
host_groups body · list of strings
List of host groups to apply this IOC to.
id body · string
ID of the indicator to be updated. At least one ID must be specified using this keyword, or as part of the indicators list using the indicators keyword.
metadata body · string
Dictionary containing the filename for the IOC. Not required if filename is used.
mobile_action body · string
Action to perform for mobile.
platforms body · string
Platforms this IOC applies to.
severity body · string
Severity this IOC generates.
source body · string
Source of the IOC.
tags body · list of strings
List of Falcon Grouping Tags to apply this IOC to.
type body · string
Type of indicator.
value body · string
Value of the indicator.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
bulk_update = {
"action": "string",
"applied_globally": True,
"description": "string",
"expiration": "2021-10-22T11:03:16.123Z",
"filter": "string",
"from_parent": True,
"host_groups": [
"string"
],
"mobile_action": "string",
"platforms": [
"string"
],
"severity": "string",
"source": "string",
"tags": [
"string"
]
}
indicators = [
{
"action": "string",
"applied_globally": True,
"description": "string",
"expiration": "2021-10-22T11:03:16.123Z",
"host_groups": [
"string"
],
"id": "string",
"metadata": {
"filename": "string"
},
"mobile_action": "string",
"platforms": [
"string"
],
"severity": "string",
"source": "string",
"tags": [
"string"
]
}
]
response = falcon.indicator_update(action="string",
applied_globally=boolean,
bulk_update=bulk_update,
comment="string",
description="string",
expiration="string",
filename="string",
from_parent=boolean,
host_groups=["string"],
id="string",
indicators=indicators,
ignore_warnings=boolean,
metadata="string",
mobile_action="string",
platforms="string",
retrodetects=boolean,
severity="string",
source="string",
tags=["string"],
type="string",
value="string")
print(response)
[
{
"action": "string",
"applied_globally": false,
"created_by": "string",
"created_on": "string",
"deleted": false,
"description": "string",
"expiration": "string",
"expired": false,
"from_parent": false,
"host_groups": [],
"id": "string",
"metadata": {},
"mobile_action": "string",
"modified_by": "string",
"modified_on": "string",
"parent_cid_name": "string",
"platforms": [],
"severity": "string",
"source": "string",
"tags": [],
"type": "string",
"value": "string"
}
]


Query IOC Types.

Method GET
Route /iocs/queries/ioc-types/v1
Scope IOC Management: READ
PEP 8 ioc_type_query
offset query · string
Starting index of overall result set from which to return ids.
limit query · integer
Number of ids to return.
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.ioc_type_query(limit=integer, offset="string")
print(response)
[
"string"
]


Query Platforms.

Method GET
Route /iocs/queries/platforms/v1
Scope IOC Management: READ
PEP 8 platform_query
offset query · string
Starting index of overall result set from which to return ids.
limit query · integer
Number of ids to return.
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.platform_query(limit=integer, offset="string")
print(response)
[
"string"
]


Query Severities.

Method GET
Route /iocs/queries/severities/v1
Scope IOC Management: READ
PEP 8 severity_query
offset query · string
Starting index of overall result set from which to return ids.
limit query · integer
Number of ids to return.
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import IOC
falcon = IOC(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.severity_query(limit=integer, offset="string")
print(response)
[
"string"
]