Skip to main content

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput

Defines the input details for updating a function registration in a membership contact store while capturing guest information. Each guest must be an existing MembershipContactStoreContact in EventsAir.

input UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput {
cancelationTaxOverrides: [TaxOverrideInput!]
contactId: ID!
customFields: [CustomFieldInput!]
discountCodeId: ID
functionFeeTypeId: ID
functionRegistrationId: ID!
guests: [UpdateContactFunctionGuestInput!]!
membershipContactStoreId: ID!
overridePaymentSchedule: [UpdateOverridePaymentScheduleItemInput!]
paymentDetails: UpdatePaymentDetailsInput
paymentScheduleSource: PaymentScheduleSource
taxOverrides: [TaxOverrideInput!]
temporaryHoldContextId: ID
}

Fields​

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.cancelationTaxOverrides ● [TaxOverrideInput!] list input​

The collection of cancelation taxes for the function registration that will override the cancelation taxes from setup. Optional.

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

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.contactId ● ID! non-null scalar​

The identifier of the contact.

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.customFields ● [CustomFieldInput!] list input​

The custom fields to update or create for the function registration. Optional.

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.discountCodeId ● ID scalar​

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

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.functionFeeTypeId ● ID scalar​

The identifier of the function fee type for the registration. Optional.

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.functionRegistrationId ● ID! non-null scalar​

The identifier of the function registration.

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.guests ● [UpdateContactFunctionGuestInput!]! non-null input​

The function guests to create or update for the function registration.

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.membershipContactStoreId ● ID! non-null scalar​

The identifier of the membership contact store the function is associated with.

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.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 function 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.

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.paymentDetails ● UpdatePaymentDetailsInput input​

The payment details for the registration. Optional.

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.paymentScheduleSource ● PaymentScheduleSource enum​

The source of the payment schedule for the function registration. Optional.

If set to null, will default to USE_DEFAULT if the function has usePaymentSchedule set to TRUE otherwise will default to NO_PAYMENT_SCHEDULE.

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.taxOverrides ● [TaxOverrideInput!] list input​

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

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

UpdateMembershipContactStoreFunctionRegistrationWithContactGuestsInput.temporaryHoldContextId ● ID scalar​

A user-defined identifier representing the context for any previously created holds. If this field is specified, any outstanding hold on the registration and its discount code will automatically be released when the registration is successfully updated. Optional.

Member Of​

updateMembershipContactStoreFunctionRegistrationWithContactGuests mutation