CreateRegistrationGroupInput
Defines the input for creating a registration group.
input CreateRegistrationGroupInput {
backgroundColor: HexColorCode
customFields: [CustomFieldInput!]
eventId: ID!
inventoryLimit: PositiveInt
name: String!
textColor: HexColorCode
uniqueCode: String
}
Fields
CreateRegistrationGroupInput.backgroundColor
● HexColorCode
scalar
The hex color code to use for the background when rendering the registration group category. Optional.
The default value is #376092
.
CreateRegistrationGroupInput.customFields
● [CustomFieldInput!]
list input
The custom fields to create for the registration group. Optional.
CreateRegistrationGroupInput.eventId
● ID!
non-null scalar
The identifier of the event the registration group is associated with.
CreateRegistrationGroupInput.inventoryLimit
● PositiveInt
scalar
The inventory limit for this registration group. Optional.
If not specified the inventory will be unlimited.
CreateRegistrationGroupInput.name
● String!
non-null scalar
A UTF-8 string representing the name of the registration group.
CreateRegistrationGroupInput.textColor
● HexColorCode
scalar
The hex color code to use for the text when rendering the registration group category. Optional.
The default value is #FFFFFF
.
CreateRegistrationGroupInput.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the registration group. Optional.
The value must be unique across all registration groups for an event.
Member Of
createRegistrationGroup
mutation