OBJECT
LoginConfiguration
link GraphQL Schema definition
1 type LoginConfiguration { 2 3 # Indicates whether or not custom login is enabled for the organization or 4 # instance. 5 # If enabled, this applies to all users within the organization for 6 # organization-level configs. 7 # Defaults to true. 8 Boolean : 9 10 # Indicates whether Veritone branding should be hidden or not. When enabled, 11 # Veritone logos and 12 # branding should not be shown on the resulting login page. 13 Boolean : 14 15 # Basic information about the organization that this login configuration belongs 16 # to. 17 # If this field is returned NULL, the login configuration is an instance-level 18 # configuration. 19 # Otherwise, it is an organization-level configuration. 20 # 21 # _This information is omitted for Instance-level login configurations._ 22 OrganizationInfoSimple : 23 24 # Name of the login configuration. 25 String! : 26 27 # The name of the dedicated Veritone login endpoint for the organization or 28 # instance. 29 String! : 30 31 # Logo to be displayed on the organization's login page; stored as base 64 string 32 String : 33 34 # The color of the login submit button 35 String : 36 37 # The text color of the login submit button 38 String : 39 40 }
link Required by
- LoginConfigurationList
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- Organization
- 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.