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 # The event subscription scope 31 EventSubscriptionScope : 32 33 }
link Required by
- ApplicationAn application is a set of Veritone functionality that customers can sign up for.
- EventSubscriptionList
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.