Skip to main content

EventCourseRegistration

Course registration encapsulates information about the attendee and the options selected when registering to attend a course.

type EventCourseRegistration {
attendanceStatus: CourseAttendanceStatus!
comment: String
contact: Contact!
course: EventCourse!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
dateTime: DateTime!
fee: Fee!
feeType: CourseFeeType!
grade: String
id: ID!
itineraryConfiguration: CourseRegistrationItineraryConfiguration!
lastModifiedAt: DateTime!
lastModifiedBy: String
paymentDetails: CourseRegistrationPaymentDetails!
score: Float!
tickets: PositiveInt!
}

Fields

EventCourseRegistration.attendanceStatus ● CourseAttendanceStatus! non-null enum

The attendee's attendance status for the course.

EventCourseRegistration.comment ● String scalar

Comment for the course registration. Optional.

EventCourseRegistration.contact ● Contact! non-null object

The contact who registered.

EventCourseRegistration.course ● EventCourse! non-null object

The course this course registration pertains to.

EventCourseRegistration.createdAt ● DateTime! non-null scalar

The date and time the record was created.

EventCourseRegistration.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

EventCourseRegistration.customFields ● [CustomField!]! non-null object

A list of custom field values associated with this course registration.

CustomFields and CustomFieldDefinitions can be matched through the definitionId and id fields, respectively.

See CustomFieldSearchFilterInput for details on how the optional input argument can be used to filter custom fields.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
EventCourseRegistration.customFields.input ● CustomFieldSearchFilterInput! non-null input
EventCourseRegistration.customFields.limit ● PaginationLimit! non-null scalar
EventCourseRegistration.customFields.offset ● NonNegativeInt! non-null scalar

EventCourseRegistration.dateTime ● DateTime! non-null scalar

The date and time that the course registration occurred.

EventCourseRegistration.fee ● Fee! non-null object

The fee including both the amount and currency.

EventCourseRegistration.feeType ● CourseFeeType! non-null object

The fee type that applied to the course registration.

EventCourseRegistration.grade ● String scalar

The grade the attendee received for the course. Optional.

EventCourseRegistration.id ● ID! non-null scalar

The unique identifier for a course registration.

EventCourseRegistration.itineraryConfiguration ● CourseRegistrationItineraryConfiguration! non-null object

The itinerary configuration for this course registration.

EventCourseRegistration.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

EventCourseRegistration.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

EventCourseRegistration.paymentDetails ● CourseRegistrationPaymentDetails! non-null object

The payment details for the course registration.

EventCourseRegistration.score ● Float! non-null scalar

The score the attendee received for the course.

EventCourseRegistration.tickets ● PositiveInt! non-null scalar

The number of tickets registered.

Member Of

Contact object ● CreateEventCourseRegistrationPayload object ● Event object ● UpdateEventCourseRegistrationPayload object