UpdateGroupRegistrationInput
Defines the input for updating a group registration.
input UpdateGroupRegistrationInput {
cancelationTaxOverrides: [TaxOverrideInput!]
comment: String
contactId: ID!
customFields: [CustomFieldInput!]
dateTime: DateTime
discountCodeId: ID
eventId: ID!
overridePaymentSchedule: [UpdateOverridePaymentScheduleItemInput!]
paymentDetails: UpdatePaymentDetailsInput
paymentScheduleSource: PaymentScheduleSource
registrationId: ID!
registrationTypeId: ID
taxOverrides: [TaxOverrideInput!]
tickets: PositiveInt
}
Fields
UpdateGroupRegistrationInput.cancelationTaxOverrides ● [TaxOverrideInput!] list input
The collection of cancelation taxes for the group registration booking that will override the cancelation taxes from setup. Optional.
When set to null, the default cancelation taxes for the group registration will be applied. When set to an empty array, no taxes will be applied.
UpdateGroupRegistrationInput.comment ● String scalar
The comments for this group registration. Optional.
UpdateGroupRegistrationInput.contactId ● ID! non-null scalar
The identifier of the contact.
UpdateGroupRegistrationInput.customFields ● [CustomFieldInput!] list input
The custom fields to update or create for the group registration. Optional.
UpdateGroupRegistrationInput.dateTime ● DateTime scalar
The date and time that the group registration occurred. Optional.
UpdateGroupRegistrationInput.discountCodeId ● ID scalar
The identifier of the discount code to apply to the group registration. Optional.
UpdateGroupRegistrationInput.eventId ● ID! non-null scalar
The identifier of the event the group registration is associated with.
UpdateGroupRegistrationInput.overridePaymentSchedule ● [UpdateOverridePaymentScheduleItemInput!] list input
The list of payment schedule items to override the default payment schedule, required when paymentScheduleSource is set to CUSTOM. Optional.
Passing null or an empty list will remove all of the payment schedule items from the registration. Omitting the input value entirely will keep the existing payment schedule items as-is. When passing a list, for any existing payment schedule items where the id is not provided the payment schedule item will be removed.
UpdateGroupRegistrationInput.paymentDetails ● UpdatePaymentDetailsInput input
The payment details for the group registration. Optional.
UpdateGroupRegistrationInput.paymentScheduleSource ● PaymentScheduleSource enum
The source of the payment schedule for the registration. Optional.
If set to null, will default to USE_DEFAULT if the registration type has usePaymentSchedule set to TRUE otherwise will default to NO_PAYMENT_SCHEDULE.
UpdateGroupRegistrationInput.registrationId ● ID! non-null scalar
The identifier of the group registration.
UpdateGroupRegistrationInput.registrationTypeId ● ID scalar
The identifier of the registration type the group registration is associated with. Optional.
UpdateGroupRegistrationInput.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.
UpdateGroupRegistrationInput.tickets ● PositiveInt scalar
The number of tickets to register. Optional.
Member Of
updateGroupRegistration mutation