CreateCeContactStoreFunctionRegistrationWithContactGuestsInput
Defines the input details for creating a function registration in a continuing education contact store while capturing guest information.
Each guest must be an existing CeContactStoreContact
in EventsAir.
input CreateCeContactStoreFunctionRegistrationWithContactGuestsInput {
ceContactStoreId: ID!
contactId: ID!
customFields: [CustomFieldInput!]
discountCodeId: ID
functionFeeTypeId: ID!
guests: [CreateContactFunctionGuestInput!]!
paymentDetails: CreatePaymentDetailsInput!
temporaryHoldContextId: ID
}
Fields
CreateCeContactStoreFunctionRegistrationWithContactGuestsInput.ceContactStoreId
● ID!
non-null scalar
The identifier of the continuing education contact store the function is associated with.
CreateCeContactStoreFunctionRegistrationWithContactGuestsInput.contactId
● ID!
non-null scalar
The identifier of the contact.
CreateCeContactStoreFunctionRegistrationWithContactGuestsInput.customFields
● [CustomFieldInput!]
list input
The custom fields to create for the function registration. Optional.
CreateCeContactStoreFunctionRegistrationWithContactGuestsInput.discountCodeId
● ID
scalar
The identifier of the discount code to apply to the registration. Optional.
CreateCeContactStoreFunctionRegistrationWithContactGuestsInput.functionFeeTypeId
● ID!
non-null scalar
The identifier of the function fee type for the registration.
CreateCeContactStoreFunctionRegistrationWithContactGuestsInput.guests
● [CreateContactFunctionGuestInput!]!
non-null input
The function guests to create for the function registration.
CreateCeContactStoreFunctionRegistrationWithContactGuestsInput.paymentDetails
● CreatePaymentDetailsInput!
non-null input
The payment details for the registration.
CreateCeContactStoreFunctionRegistrationWithContactGuestsInput.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
createCeContactStoreFunctionRegistrationWithContactGuests
mutation