Bulk Remove Triggers

Remove triggers from tracking

DELETE /api/v1/trigger/{GROUP_NAME} HTTP/1.1

Replace GROUP_NAME with the Group Name under which the triggers have to be removed

Request body

{
            "triggerCodes": ["trigger_code"]
}
Param
Mandatory
Description

trigger_code

Y

Array of Intellizence Trigger Codes that you would like to remove

Response body

{
            "nonExistingTriggerCodes": ["trigger_code"],
            "nonTrackedTriggerCodes": ["trigger_code"],
            "removedTriggerCodes": ["trigger_code"]
}
                                        
Param
Description

nonExistingTriggerCodes

Array of Trigger Codes which are not existing in the Intellizence database

nonTrackedTriggerCodes

Array of Trigger Codes which are not been tracked

removedTriggerCodes

Array of Trigger Codes which are removed

Last updated