Skip to main content

CreateGroupRegistrationInput

Defines the input for creating a group registration.

input CreateGroupRegistrationInput {
comment: String
contactId: ID!
customFields: [CustomFieldInput!]
dateTime: DateTime!
discountCodeId: ID
eventId: ID!
paymentDetails: CreatePaymentDetailsInput!
registrationTypeId: ID!
taxOverrides: [TaxOverrideInput!]
tickets: PositiveInt!
}

Fields

CreateGroupRegistrationInput.comment ● String scalar

The comments for this registration. Optional.

CreateGroupRegistrationInput.contactId ● ID! non-null scalar

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

CreateGroupRegistrationInput.customFields ● [CustomFieldInput!] list input

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

CreateGroupRegistrationInput.dateTime ● DateTime! non-null scalar

The date and time that the group registration occurred.

CreateGroupRegistrationInput.discountCodeId ● ID scalar

The identifier of the discount code to apply to the group registration. Optional.

CreateGroupRegistrationInput.eventId ● ID! non-null scalar

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

CreateGroupRegistrationInput.paymentDetails ● CreatePaymentDetailsInput! non-null input

The payment details for the group registration.

CreateGroupRegistrationInput.registrationTypeId ● ID! non-null scalar

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

CreateGroupRegistrationInput.taxOverrides ● [TaxOverrideInput!] list input

The collection of taxes for the group registration booking that will override the taxes from setup. Optional.

When set to null, the default taxes for the group registration will be applied. When set to an empty array, no taxes will be applied.

CreateGroupRegistrationInput.tickets ● PositiveInt! non-null scalar

The number of tickets to register.

Member Of

createGroupRegistration mutation