How to add custom Events to Automations Trigger list in Automation Studio?

Former Member
Former Member

Hi

I created several events in my project.

How can I register them to be used in Automations Trigger list in Automation Studio?

  • Hi Iurii. You can register your own events as automation triggers by implementing the IAutomationEventDefinition plugin type. 

    IAutomationEventDefinition is defined in the Telligent.Evolution.Extensibility.Automation.Version1 namespace of Telligent.Evolution.Platform.dll Definition interface IAutomationEventDefinition : IPlugin…
    Last edited in Verint Community 12.x > API Documentation
      

    And within the plugin, you can register triggers against your events within the plugin's RegisterEvents method.

  • Former Member
    0 Former Member in reply to Michael Monteleone

    Works. Thank you!