Skip to main content

CreateEventCourseRegistrationInput

Defines the input for creating a course registration in an event.

input CreateEventCourseRegistrationInput {
attendanceStatus: CourseAttendanceStatus!
comment: String
contactId: ID!
courseFeeTypeId: ID!
customFields: [CustomFieldInput!]
dateTime: DateTime!
discountCodeId: ID
eventId: ID!
grade: String
itineraryConfiguration: CourseRegistrationItineraryConfigurationInput!
paymentDetails: CreatePaymentDetailsInput!
score: NonNegativeFloat!
tickets: PositiveInt!
}

Fields

CreateEventCourseRegistrationInput.attendanceStatus ● CourseAttendanceStatus! non-null enum

The attendee's attendance status for the course.

CreateEventCourseRegistrationInput.comment ● String scalar

Comment for the course registration. Optional.

CreateEventCourseRegistrationInput.contactId ● ID! non-null scalar

The identifier of the contact.

CreateEventCourseRegistrationInput.courseFeeTypeId ● ID! non-null scalar

The identifier of the course fee type for the course registration.

CreateEventCourseRegistrationInput.customFields ● [CustomFieldInput!] list input

The custom fields to create for the course registration. Optional.

CreateEventCourseRegistrationInput.dateTime ● DateTime! non-null scalar

The date and time that the course registration occurred.

CreateEventCourseRegistrationInput.discountCodeId ● ID scalar

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

CreateEventCourseRegistrationInput.eventId ● ID! non-null scalar

The identifier of the event the course registration is associated with.

CreateEventCourseRegistrationInput.grade ● String scalar

The grade the attendee received for the course. Optional.

CreateEventCourseRegistrationInput.itineraryConfiguration ● CourseRegistrationItineraryConfigurationInput! non-null input

The itinerary configuration for this course registration.

CreateEventCourseRegistrationInput.paymentDetails ● CreatePaymentDetailsInput! non-null input

The payment details for the course registration.

CreateEventCourseRegistrationInput.score ● NonNegativeFloat! non-null scalar

The score the attendee received for the course.

CreateEventCourseRegistrationInput.tickets ● PositiveInt! non-null scalar

The number of tickets to register. Defaults to 1.

Member Of

createEventCourseRegistration mutation