UpdateGroupRegistrationInput
Defines the input for updating a group registration.
input UpdateGroupRegistrationInput {
contactId: ID!
customFields: [CustomFieldInput!]
dateTime: DateTime
discountCodeId: ID
eventId: ID!
paymentDetails: UpdatePaymentDetailsInput
registrationId: ID!
registrationTypeId: ID
tickets: PositiveInt
}
Fields
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.paymentDetails
● UpdatePaymentDetailsInput
input
The payment details for the group registration. Optional.
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.tickets
● PositiveInt
scalar
The number of tickets to register. Optional.
Member Of
updateGroupRegistration
mutation