OBJECT

LoginConfiguration

link GraphQL Schema definition

1type 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.
8enabled: 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.
13hideVeritoneBranding: 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._
22organizationInfo: OrganizationInfoSimple
23
24# Name of the login configuration.
25name: String!
26
27# The name of the dedicated Veritone login endpoint for the organization or
28# instance.
29slug: String!
30
31# Logo to be displayed on the organization's login page; stored as base 64 string
32logo: String
33
34# The color of the login submit button
35buttonColor: String
36
37# The text color of the login submit button
38buttonTextColor: String
39
40}