UpdateRegistrationInput
Defines the input for updating a registration.
input UpdateRegistrationInput {
cancelationTaxOverrides: [TaxOverrideInput!]
comment: String
contactId: ID!
customFields: [CustomFieldInput!]
dateTime: DateTime
discountCodeId: ID
eventId: ID!
paymentDetails: UpdatePaymentDetailsInput
registrationId: ID!
registrationTypeId: ID
taxOverrides: [TaxOverrideInput!]
}
Fields
UpdateRegistrationInput.cancelationTaxOverrides ● [TaxOverrideInput!] list input
The collection of cancelation taxes for the registration booking that will override the cancelation taxes from setup. Optional.
When set to null, the default cancelation taxes for the registration will be applied. When set to an empty array, no taxes will be applied.
UpdateRegistrationInput.comment ● String scalar
The comments for this registration. Optional.
UpdateRegistrationInput.contactId ● ID! non-null scalar
The identifier of the contact.
UpdateRegistrationInput.customFields ● [CustomFieldInput!] list input
The custom fields to update or create for the registration. Optional.
UpdateRegistrationInput.dateTime ● DateTime scalar
The date and time that the registration occurred. Optional.
UpdateRegistrationInput.discountCodeId ● ID scalar
The identifier of the discount code to apply to the registration. Optional.
UpdateRegistrationInput.eventId ● ID! non-null scalar
The identifier of the event the registration is associated with.
UpdateRegistrationInput.paymentDetails ● UpdatePaymentDetailsInput input
The payment details for the registration. Optional.
UpdateRegistrationInput.registrationId ● ID! non-null scalar
The identifier of the registration.
UpdateRegistrationInput.registrationTypeId ● ID scalar
The identifier of the registration type the registration is associated with. Optional.
UpdateRegistrationInput.taxOverrides ● [TaxOverrideInput!] list input
The collection of taxes for the registration booking that will override the taxes from setup. Optional.
When set to null, the default taxes for the registration will be applied. When set to an empty array, no taxes will be applied.
Member Of
updateRegistration mutation