OBJECT

EventSubscription

link GraphQL Schema definition

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