add_entity_link
This function adds json result with entity identifier as title.
siemplify.result.add_entity_link(entity_identifier, link)
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 |
link | string | Link to the websites such as https://siemplify.co |
|
Yes |
Return Type
NoneType
Example
Sample code
from SiemplifyAction import SiemplifyAction
siemplify = SiemplifyAction()
entity_identifier = "10.0.0.1"
link = "https://siemplify.co/entity/10.0.0.1"
siemplify.result.add_entity_link(entity_identifier, link)
Result Behavior
The provided link will be added to entity 10.0.0.1.
Result Value
None