CreateMembershipContactStoreFunctionRegistrationWithBasicGuestsInput
Defines the input details for creating a function registration in a membership contact store while capturing guest information. The guest details are captured
for the purposes of attending the function and are not stored as MembershipContactStoreContacts
in EventsAir.
input CreateMembershipContactStoreFunctionRegistrationWithBasicGuestsInput {
contactId: ID!
customFields: [CustomFieldInput!]
discountCodeId: ID
functionFeeTypeId: ID!
guests: [CreateBasicFunctionGuestInput!]!
membershipContactStoreId: ID!
paymentDetails: CreatePaymentDetailsInput!
temporaryHoldContextId: ID
}
Fields
CreateMembershipContactStoreFunctionRegistrationWithBasicGuestsInput.contactId
● ID!
non-null scalar
The identifier of the contact.
CreateMembershipContactStoreFunctionRegistrationWithBasicGuestsInput.customFields
● [CustomFieldInput!]
list input
The custom fields to create for the function registration. Optional.
CreateMembershipContactStoreFunctionRegistrationWithBasicGuestsInput.discountCodeId
● ID
scalar
The identifier of the discount code to apply to the registration. Optional.
CreateMembershipContactStoreFunctionRegistrationWithBasicGuestsInput.functionFeeTypeId
● ID!
non-null scalar
The identifier of the function fee type for the registration.
CreateMembershipContactStoreFunctionRegistrationWithBasicGuestsInput.guests
● [CreateBasicFunctionGuestInput!]!
non-null input
The function guests to create for the function registration.
CreateMembershipContactStoreFunctionRegistrationWithBasicGuestsInput.membershipContactStoreId
● ID!
non-null scalar
The identifier of the membership contact store the function is associated with.
CreateMembershipContactStoreFunctionRegistrationWithBasicGuestsInput.paymentDetails
● CreatePaymentDetailsInput!
non-null input
The payment details for the registration.
CreateMembershipContactStoreFunctionRegistrationWithBasicGuestsInput.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 created. Optional.
Member Of
createMembershipContactStoreFunctionRegistrationWithBasicGuests
mutation