OrganizationCreateInput
Attributes for creating an organization
input OrganizationCreateInput {
name: String!
legalName: String!
street1: String!
city: String!
province: String!
postalCode: String!
country: Country!
categoryId: ID!
website: String
googlePlacesId: ID
role: OrganizationRole!
utmData: CampaignUtmDataInput
}
Fields
OrganizationCreateInput.name ● String! non-null scalar
The name of the organization.
OrganizationCreateInput.legalName ● String! non-null scalar
The legal name of the organization.
OrganizationCreateInput.street1 ● String! non-null scalar
Street number and street name of the organization.
OrganizationCreateInput.city ● String! non-null scalar
City
OrganizationCreateInput.province ● String! non-null scalar
State/Province
OrganizationCreateInput.postalCode ● String! non-null scalar
Zip/Postal Code
OrganizationCreateInput.country ● Country! non-null enum
The country in which the organization is located.
OrganizationCreateInput.categoryId ● ID! non-null scalar
Organization category
OrganizationCreateInput.website ● String scalar
Website of organization
OrganizationCreateInput.googlePlacesId ● ID scalar
Google Places ID for organization
OrganizationCreateInput.role ● OrganizationRole! non-null enum
The role of the person creating the organization
OrganizationCreateInput.utmData ● CampaignUtmDataInput input
The organization's UTM parameters used for marketing and analytics
Member of
OrganizationCreate mutation