OBJECT
EventSubscription
link GraphQL Schema definition
1 type EventSubscription { 2 3 # The event subscription id 4 ID! : 5 6 # The organization id 7 ID! : 8 9 # The event name such as `MentionGenerated`, `JobCompleted`, etc. 10 String! : 11 12 # The event type such as `mention`, `job`, etc 13 String! : 14 15 # The target of the event 16 String! : 17 18 # The params that will be used by the consumer of the event 19 JSONData! : 20 21 # The subscription hash 22 String! : 23 24 # The created date time of the event subscription 25 DateTime! : 26 27 # The conditions to filter the event 28 JSONData : 29 30 }