CeContactStoreCourseRegistration
Course registration encapsulates information about the attendee and the options selected when registering to attend a course.
type CeContactStoreCourseRegistration {
attendanceStatus: CourseAttendanceStatus!
comment: String
contact: CeContactStoreContact!
course: CeContactStoreCourse!
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
CeContactStoreCourseRegistration.attendanceStatus
● CourseAttendanceStatus!
non-null enum
The attendee's attendance status for the course.
CeContactStoreCourseRegistration.comment
● String
scalar
Comment for the course registration. Optional.
CeContactStoreCourseRegistration.contact
● CeContactStoreContact!
non-null object
The contact who registered.
CeContactStoreCourseRegistration.course
● CeContactStoreCourse!
non-null object
The course this course registration pertains to.
CeContactStoreCourseRegistration.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
CeContactStoreCourseRegistration.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
CeContactStoreCourseRegistration.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this course registration.
CustomField
s and CustomFieldDefinition
s 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 to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
CeContactStoreCourseRegistration.customFields.input
● CustomFieldSearchFilterInput!
non-null input
CeContactStoreCourseRegistration.customFields.limit
● PaginationLimit!
non-null scalar
CeContactStoreCourseRegistration.customFields.offset
● NonNegativeInt!
non-null scalar
CeContactStoreCourseRegistration.dateTime
● DateTime!
non-null scalar
The date and time that the course registration occurred.
CeContactStoreCourseRegistration.fee
● Fee!
non-null object
The fee including both the amount and currency.
CeContactStoreCourseRegistration.feeType
● CourseFeeType!
non-null object
The fee type that applied to the course registration.
CeContactStoreCourseRegistration.grade
● String
scalar
The grade the attendee received for the course. Optional.
CeContactStoreCourseRegistration.id
● ID!
non-null scalar
The unique identifier for a course registration.
CeContactStoreCourseRegistration.itineraryConfiguration
● CourseRegistrationItineraryConfiguration!
non-null object
The itinerary configuration for this course registration.
CeContactStoreCourseRegistration.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
CeContactStoreCourseRegistration.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
CeContactStoreCourseRegistration.paymentDetails
● CourseRegistrationPaymentDetails!
non-null object
The payment details for the course registration.
CeContactStoreCourseRegistration.score
● Float!
non-null scalar
The score the attendee received for the course.
CeContactStoreCourseRegistration.tickets
● PositiveInt!
non-null scalar
The number of tickets registered.
Member Of
CeContactStore
object ● CeContactStoreContact
object ● CreateCeContactStoreCourseRegistrationPayload
object ● UpdateCeContactStoreCourseRegistrationPayload
object