Skip to main content

CreateGroupRegistrationInput

Defines the input for creating a group registration.

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

Fields

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.tickets ● PositiveInt! non-null scalar

The number of tickets to register.

Member Of

createGroupRegistration mutation