OBJECT

OrganizationApplication

OrganizationApplication is the application for requesting an organization be added to Twitch Developer Organizations.

link GraphQL Schema definition

1type OrganizationApplication {
2
3# Email of the person creating the application.
4# Deprecated as we are no longer collecting contact email. Using TwitchID and Dart
5# to send notifications instead.
6contactEmail: String @deprecated( reason: "No longer collecting contact email." )
7
8# The name of applying organization.
9organizationName: String!
10
11# Current status of the company application.
12status: OrganizationAppilcationStatus!
13
14}