This function adds data table with entity identifier as table title.

siemplify.result.add_entity_table(entity_identifier, data_table)

Parameters

Param Name Param Type Possible Values Comments Mandatory Parameter
entity_identifier string entity identifier values such as 1.1.1.1, google.com N/A Yes
data_table list CSV formatted list
Yes

Return Type

NoneType

Example

Sample code
from SiemplifyAction import SiemplifyAction
siemplify = SiemplifyAction()
entity_identifier = "10.0.0.1"
data_table = ["h1", "h2", "h3", "Entity Type", "Enrichment", "Original Identifier"]
siemplify.result.add_entity_table(entity_identifier, data_table)
Result Behavior
The provided csv data will be added to entity 10.0.0.1 with entity identifier as title. 
Result Value
None