Skip to main content

Registration

A registration encapsulates information about the attendee and the options selected when registering to attend an event.

type Registration {
availableMeetingTimeSlots: [MeetingScheduleTimeSlot!]!
cancelationTaxes: [AppliedTax!]!
comment: String
contact: Contact!
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!
id: ID!
isGroupInventory: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
meetingPreferences: RegistrationMeetingPreferences!
meetings(
input: RegistrationMeetingSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationMeeting!]!
paymentDetails: RegistrationPaymentDetails!
paymentSchedule: [AppliedPaymentScheduleItem!]
paymentScheduleSource: PaymentScheduleSource!
preferredNameAccompanyingPerson: PreferredNameAccompanyingPerson
sharingMeetingDiaryRegistrationId: ID
taxes: [AppliedTax!]!
tickets: PositiveInt!
type: RegistrationType!
}

Fields

Registration.availableMeetingTimeSlots ● [MeetingScheduleTimeSlot!]! non-null object

The time slots in the meeting schedule of the registration that are available to book meetings.

Registration.cancelationTaxes ● [AppliedTax!]! non-null object

The list of cancelation taxes that apply to the registration booking.

Registration.comment ● String scalar

The comments for this registration. Optional.

Registration.contact ● Contact! non-null object

The contact who registered.

Registration.createdAt ● DateTime! non-null scalar

The date and time the record was created.

Registration.createdBy ● String scalar

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

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

Registration.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.
Registration.customFieldsPaged.filterInput ● CustomFieldAdvancedSearchFilterInput! non-null input
Registration.customFieldsPaged.limit ● PaginationLimit! non-null scalar
Registration.customFieldsPaged.offset ● NonNegativeInt! non-null scalar

Registration.dateTime ● DateTime! non-null scalar

The date and time that the registration occurred.

Registration.fee ● Fee! non-null object

The amount and currency the fee for the registration was paid in.

Registration.id ● ID! non-null scalar

The unique identifier for a registration.

Registration.isGroupInventory ● Boolean! non-null scalar

A flag indicating whether the registration is inventory being held for a group on a Group Co-ordinator.

Registration.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

Registration.lastModifiedBy ● String scalar

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

Registration.meetingPreferences ● RegistrationMeetingPreferences! non-null object

The meeting preferences for this registration.

Registration.meetings ● [RegistrationMeeting!]! non-null interface

The meetings associated with this registration.

See RegistrationMeetingSearchFilterInput for details on how the optional input argument can be used to filter registration meetings.

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).
Registration.meetings.input ● RegistrationMeetingSearchFilterInput! non-null input
Registration.meetings.limit ● PaginationLimit! non-null scalar
Registration.meetings.offset ● NonNegativeInt! non-null scalar

Registration.paymentDetails ● RegistrationPaymentDetails! non-null object

The payment details for the registration.

Registration.paymentSchedule ● [AppliedPaymentScheduleItem!] list object

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

Registration.paymentScheduleSource ● PaymentScheduleSource! non-null enum

The source of the payment schedule for the registration.

Registration.preferredNameAccompanyingPerson ● PreferredNameAccompanyingPerson object

The preferred name for the accompanying person when the registration type is set as isAccompanyingPersonRegistration. Optional.

Registration.sharingMeetingDiaryRegistrationId ● ID scalar

The identifier of the registration that this registration is sharing its meeting diary with. Optional.

When set, this registration uses the meeting diary of the referenced registration instead of its own.

Registration.taxes ● [AppliedTax!]! non-null object

The list of taxes that apply to the registration booking.

Registration.tickets ● PositiveInt! non-null scalar

The number of tickets registered.

Registration.type ● RegistrationType! non-null object

The fee type that was selected.

Member Of

CancelRegistrationPayload object ● Contact object ● CreateGroupRegistrationPayload object ● CreateRegistrationPayload object ● Event object ● ExhibitionBookingToRegistrationMeetingPreference object ● ExhibitionBookingWithRegistrationMeeting object ● RegistrationPage object ● RegistrationToExhibitionBookingMeetingPreference object ● RegistrationToRegistrationMeetingPreference object ● RegistrationType object ● RegistrationWithRegistrationMeeting object ● RestoreRegistrationPayload object ● UpdateGroupRegistrationPayload object ● UpdateRegistrationPayload object ● UpdateRegistrationStatusPayload object