Skip to main content

UpdateRegistrationGroupInput

Defines the input for updating a registration group.

input UpdateRegistrationGroupInput {
backgroundColor: HexColorCode
customFields: [CustomFieldInput!]
eventId: ID!
inventoryLimit: PositiveInt
name: String
registrationGroupId: ID!
textColor: HexColorCode
uniqueCode: String
}

Fields

UpdateRegistrationGroupInput.backgroundColor ● HexColorCode scalar

The hex color code to use for the background when rendering the registration group category. Optional.

UpdateRegistrationGroupInput.customFields ● [CustomFieldInput!] list input

The custom fields to create for the registration group. Optional.

UpdateRegistrationGroupInput.eventId ● ID! non-null scalar

The identifier of the event the registration group is associated with.

UpdateRegistrationGroupInput.inventoryLimit ● PositiveInt scalar

The inventory limit for this registration group. Optional.

If not specified the inventory will be unlimited.

UpdateRegistrationGroupInput.name ● String scalar

A UTF-8 string representing the name of the registration group. Optional.

UpdateRegistrationGroupInput.registrationGroupId ● ID! non-null scalar

The identifier of the registration group.

UpdateRegistrationGroupInput.textColor ● HexColorCode scalar

The hex color code to use for the text when rendering the registration group category. Optional.

UpdateRegistrationGroupInput.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

updateRegistrationGroup mutation