ENUM
ApplicationStatus
Set of possible states for a custom application. The application state determines whether or not it is available in production and the actions that can be taken on it.
link GraphQL Schema definition
1 enum ApplicationStatus { 2 3 # The application is active (production state) 4 5 6 # The application is in draft state during test and development 7 8 9 # The application has been deleted and is no longer available for any purpose 10 11 12 # The application is awaiting approval. 13 14 15 # The application has been rejected and must be modified and re-submitted. 16 17 18 # The application has been approved and can now be deployed. 19 20 21 # The application has been disabled, but not deleted. 22 23 }
link Required by
- ApplicationAn application is a set of Veritone functionality that customers can sign up for.
- ApplicationFilter
- CreateApplication
- 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.
- UpdateApplication