INPUT_OBJECT

CreateOrganizationApplicationInput

Input to the CreateOrganizationApplication mutation.

link GraphQL Schema definition

1input CreateOrganizationApplicationInput {
4
2# City the applying Organization is located in. e.g. San Fransico.
3city: String
9
5# Email of the person creating the application.
6# Deprecated as we are no longer collecting contact email. Using TwitchID and Dart
7# to send notifications instead.
8contactEmail: String
12
10# First Name of person creating the application.
11contactFirstName: String!
15
13# Last Name of the person creating the application.
14contactLastName: String!
18
16# Title of the person creating the application. e.g. Director of Sales.
17contactTitle: String!
21
19# Country the applying organization is located in. e.g. US.
20country: String!
24
22# List of game IDs that belong to the applying organization.
23gameIDs: [ID!]
28
25# Industry the applying organization is operating in e.g. e-sports, gaming, health
26# care, energy.
27industry: String!
31
29# Reason for wanting to add the organization.
30joinReason: String
34
32# The name of applying organization.
33organizationName: String!
38
35# Indicate which Twitch products the organization wants to manage; e.g. creating
36# Drops, managing game box art, accessing game Insights.
37productInterest: String
42
39# Estimated size of the applying organization. e.g. 1-5, 6-20, 21-50, 51-100,
40# 101-1000, and 1000+.
41size: String!
45
43# State the applying organization is located in. e.g. CA.
44state: String
48
46# The type of work the applying organization does.
47type: OrganizationType!
52
49# The Twitch ID for the user submitting the applicaton.
50# Deprecated as the userID now comes off the authenticated user.
51userID: ID
55
53# The website address for the applying organization.
54website: String!
56}