INPUT_OBJECT

UpdateOrganization

Fields used to update an organization.

link GraphQL Schema definition

1input UpdateOrganization {
4
2# ID of the organization to update
3id: ID!
7
5# Name of the organization
6name: String
9
8type: String
11
10seatLimit: Int
13
12status: String
15
14applications: [ID!]
17
16businessUnit: String
24
18# If set to `true`, all new TDOs created by the organization will, by default, be
19# added
20# to the search index. If `false`, TDOs will not be added to the search index.
21# This
22# behavior can be overridden on specific TDOs.
23indexTDOsByDefault: Boolean
27
25# Currently only Veritone administrators can modify this field.
26metadata: JSONData
33
28# Update the engine blacklist for this organization.
29# Currently only Veritone administrators can modify this field.
30# Updating this field will completely replacing the existing engine
31# and engine category blacklists with the IDs provided.
32blacklist: SetEngineBlacklist
39
34# Update the engine whitelist for this organization.
35# Currently only Veritone administrators can modify this field.
36# Updating this field will completely replacing the existing engine
37# and whitelist with the IDs provided.
38whitelist: SetEngineWhitelist
45
40# Enable, disable, or configure integration with the organization's
41# own user directory using Okta.
42# Only an organization administrator can modify this field.
43# Veritone administrators cannot do so.
44oktaConfiguration: SetOktaConfiguration
48
46# Enable, disable, or configure the custom login page for the organization.
47loginConfiguration: SetLoginConfiguration
52
49# The budget remaining for organization (cents)
50# Only superadmin can set this value
51remainingBudget: Int
56
53# Enable/disable the limit enforced for organization
54# Only superadmin can set this value
55isLimitEnforced: Boolean
59
57# Allow/Dissallow application to be available for use for this org
58applicationAccess: [SetOrganizationApplicationAccess!]
62
60# Set the flag requireOpenId. Only allow org_admin or superadmin.
61requireOpenId: Boolean
65
63# For HUB to use
64isHubManaged: Boolean
66}