OBJECT
Application
An application is a set of Veritone functionality that customers can sign up for.
link GraphQL Schema definition
1 type Application { 2 3 ID! : 4 5 Boolean : 6 7 String! : 8 9 String! : 10 11 String : 12 13 String : 14 15 String : 16 17 String : 18 19 # The signed URL for the application icon; will fallback to raw iconSvg if unable 20 # to sign. 21 String : 22 23 # The signed URL for the application logo; will fallback to raw iconUrl if unable 24 # to sign. 25 String : 26 27 String : 28 29 DeploymentModel : 30 31 DateTime : 32 33 DateTime : 34 35 # OAuth2 client secret. This field is server-generated and is only 36 # returned on application creation. 37 String): String ( : 38 39 # OAuth2 redirect URLs 40 String] : [ 41 42 ID : 43 44 ID! : 45 46 ApplicationStatus : 47 48 String] : [ 49 50 ContextMenuExtensionList : 51 52 ApplicationStateAction] : [ 53 54 ApplicationComponent : 55 56 DailyTaskMetricsList : 57 58 # Billing 59 ID : 60 61 Boolean : 62 63 ID : 64 65 # The Application event endpoint. 66 # The event is delivered to the application via the Event Routing for Applications 67 # mechanism. 68 String : 69 70 # The tags associated with the application 71 EntityTag] : [ 72 73 # Whether or not the application will be wrapped in aiWare as an iframe 74 Boolean : 75 76 # The configs associated with this application 77 # 78 # Arguments 79 # orgId: Optional. Organization ID. 80 # 81 # If not specified, this will be the user's organization 82 # userId: Optional. If specified, returned the configs for this 83 # user and organization combo 84 # includeDefaults: If true, include defaults not specified 85 # configKeyRegexp: If specified, filter the configKey 86 ( 87 Int, : 88 Int, : 89 ID, : 90 ID, : 91 Boolean, : 92 String : 93 ): ApplicationConfigList! 94 95 # The headerbar associated with this application 96 # 97 # Arguments 98 # orgId: Optional. Organization ID. 99 # 100 # If not specified, this will be the user's organization 101 ID): ApplicationHeaderbar ( : 102 103 # Arguments 104 # includeDeleted: Include node modules with "deleted" status 105 Boolean): [NodeModule] ( : 106 107 }
link Required by
- ApplicationInviteRole
- ApplicationList
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- 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.