Skip to main content

MembershipContactStoreCourseRegistration

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

type MembershipContactStoreCourseRegistration {
attendanceStatus: CourseAttendanceStatus!
cancelationTaxes: [AppliedTax!]!
comment: String
contact: MembershipContactStoreContact!
course: MembershipContactStoreCourse!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]! @deprecated
customFieldsPaged(
filterInput: CustomFieldAdvancedSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): CustomFieldPage!
dateTime: DateTime!
fee: Fee!
feeType: CourseFeeType!
grade: String
id: ID!
itineraryConfiguration: CourseRegistrationItineraryConfiguration!
lastModifiedAt: DateTime!
lastModifiedBy: String
paymentDetail: MembershipContactStoreCourseRegistrationPaymentDetails
paymentDetails: CourseRegistrationPaymentDetails @deprecated
paymentSchedule: [AppliedPaymentScheduleItem!]
paymentScheduleSource: PaymentScheduleSource!
score: Float!
taxes: [AppliedTax!]!
tickets: PositiveInt!
}

Fields​

MembershipContactStoreCourseRegistration.attendanceStatus ● CourseAttendanceStatus! non-null enum​

The attendee's attendance status for the course.

MembershipContactStoreCourseRegistration.cancelationTaxes ● [AppliedTax!]! non-null object​

The list of cancelation taxes that apply to the membership contact store course registration booking.

MembershipContactStoreCourseRegistration.comment ● String scalar​

Comment for the course registration. Optional.

MembershipContactStoreCourseRegistration.contact ● MembershipContactStoreContact! non-null object​

The contact who registered.

MembershipContactStoreCourseRegistration.course ● MembershipContactStoreCourse! non-null object​

The course this course registration pertains to.

MembershipContactStoreCourseRegistration.createdAt ● DateTime! non-null scalar​

The date and time the record was created.

MembershipContactStoreCourseRegistration.createdBy ● String scalar​

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

MembershipContactStoreCourseRegistration.customFields ● [CustomField!]! deprecated non-null object​

DEPRECATED

Use customFieldsPaged instead. It returns the same custom fields together with pagination metadata (total count, has-next-page) and exposes a richer filter input supporting both inclusion and exclusion semantics (eq, ne, in, notIn). This field will be removed in a future release.

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).
MembershipContactStoreCourseRegistration.customFields.input ● CustomFieldSearchFilterInput! non-null input​
MembershipContactStoreCourseRegistration.customFields.limit ● PaginationLimit! non-null scalar​
MembershipContactStoreCourseRegistration.customFields.offset ● NonNegativeInt! non-null scalar​

MembershipContactStoreCourseRegistration.customFieldsPaged ● CustomFieldPage! non-null object​

Custom fields associated with this record that match the filter criteria specified in the optional filterInput argument, returned together with pagination metadata.

See CustomFieldAdvancedSearchFilterInput for details on how the filterInput argument can be used. The filter supports both inclusion and exclusion semantics (eq, ne, in, notIn).

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).

Throws an error with code:

  • BAD_USER_INPUT if all fields in the filterInput argument have a combined total number of values exceeding 1,000.
MembershipContactStoreCourseRegistration.customFieldsPaged.filterInput ● CustomFieldAdvancedSearchFilterInput! non-null input​
MembershipContactStoreCourseRegistration.customFieldsPaged.limit ● PaginationLimit! non-null scalar​
MembershipContactStoreCourseRegistration.customFieldsPaged.offset ● NonNegativeInt! non-null scalar​

MembershipContactStoreCourseRegistration.dateTime ● DateTime! non-null scalar​

The date and time that the course registration occurred.

MembershipContactStoreCourseRegistration.fee ● Fee! non-null object​

The fee including both the amount and currency.

MembershipContactStoreCourseRegistration.feeType ● CourseFeeType! non-null object​

The fee type that applied to the course registration.

MembershipContactStoreCourseRegistration.grade ● String scalar​

The grade the attendee received for the course. Optional.

MembershipContactStoreCourseRegistration.id ● ID! non-null scalar​

The unique identifier for a course registration.

MembershipContactStoreCourseRegistration.itineraryConfiguration ● CourseRegistrationItineraryConfiguration! non-null object​

The itinerary configuration for this course registration.

MembershipContactStoreCourseRegistration.lastModifiedAt ● DateTime! non-null scalar​

The date and time the record was last modified.

MembershipContactStoreCourseRegistration.lastModifiedBy ● String scalar​

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

MembershipContactStoreCourseRegistration.paymentDetail ● MembershipContactStoreCourseRegistrationPaymentDetails object​

The payment detail for the membership contact store course registration. Optional.

MembershipContactStoreCourseRegistration.paymentDetails ● CourseRegistrationPaymentDetails deprecated object​

DEPRECATED

Use paymentDetail instead. This input field will be removed in a future release.

The payment details for the course registration. Optional.

MembershipContactStoreCourseRegistration.paymentSchedule ● [AppliedPaymentScheduleItem!] list object​

The list of payment schedule items that apply to the course registration. Optional.

MembershipContactStoreCourseRegistration.paymentScheduleSource ● PaymentScheduleSource! non-null enum​

The source of the payment schedule for the course registration.

MembershipContactStoreCourseRegistration.score ● Float! non-null scalar​

The score the attendee received for the course.

MembershipContactStoreCourseRegistration.taxes ● [AppliedTax!]! non-null object​

The list of taxes that apply to the membership contact store course registration booking.

MembershipContactStoreCourseRegistration.tickets ● PositiveInt! non-null scalar​

The number of tickets registered.

Member Of​

CreateMembershipContactStoreCourseRegistrationPayload object ● MembershipContactStore object ● MembershipContactStoreContact object ● MembershipContactStoreCourseRegistrationPage object ● UpdateMembershipContactStoreCourseRegistrationPayload object