Skip to main content

ExhibitionBooking

Represents the booking of a stand by an exhibitor.

type ExhibitionBooking {
additionalCharges: [AppliedAdditionalCharge!]!
bookedOn: LocalDate
bookingType: ExhibitionBookingType!
brochures: [Brochure!]!
cancelationTaxes: [AppliedTax!]!
checklist: [AppliedChecklistItem!]!
companyLogo: Image
construction: ExhibitionConstructionType!
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!
documents(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [AttachedDocument!]!
exhibitor: Contact!
fee: Fee!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
meetingDiaries: [MeetingDiary!]!
meetingDiary(
id: ID!
): MeetingDiary!
meetingPreferences(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ExhibitionBookingToRegistrationMeetingPreference!]!
nameBadges(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ExhibitionNameBadge!]!
notes: String
paymentDetails: ExhibitionBookingPaymentDetails!
paymentSchedule: [AppliedPercentagePaymentScheduleItem!]!
positionPreference: String
profile: String
signageInstructions: String
stand: ExhibitionStand
standSignage: String
standType: ExhibitionStandType!
status: ExhibitionBookingStatus!
taxes: [AppliedTax!]!
}

Fields​

ExhibitionBooking.additionalCharges ● [AppliedAdditionalCharge!]! non-null object​

The list of additional charge details for the exhibition booking.

ExhibitionBooking.bookedOn ● LocalDate scalar​

The date the exhibition booking was booked. Optional.

ExhibitionBooking.bookingType ● ExhibitionBookingType! non-null enum​

The type of exhibition booking.

ExhibitionBooking.brochures ● [Brochure!]! non-null object​

A list of brochures associated with the exhibition stand.

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

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

ExhibitionBooking.checklist ● [AppliedChecklistItem!]! non-null object​

The list of checklist item details for the exhibition booking.

The logo of the company hosting the exhibition stand. Optional.

ExhibitionBooking.construction ● ExhibitionConstructionType! non-null enum​

The type of construction requested when the exhibition was booked.

ExhibitionBooking.createdAt ● DateTime! non-null scalar​

The date and time the record was created.

ExhibitionBooking.createdBy ● String scalar​

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

ExhibitionBooking.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 exhibition booking.

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

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

ExhibitionBooking.documents ● [AttachedDocument!]! non-null interface​

A list of the documents supplied for the exhibition booking.

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).
ExhibitionBooking.documents.limit ● PaginationLimit! non-null scalar​
ExhibitionBooking.documents.offset ● NonNegativeInt! non-null scalar​

ExhibitionBooking.exhibitor ● Contact! non-null object​

The exhibitor who booked the stand.

ExhibitionBooking.fee ● Fee! non-null object​

The exhibition booking fee including both the amount and currency.

ExhibitionBooking.id ● ID! non-null scalar​

The unique identifier for the booking.

ExhibitionBooking.lastModifiedAt ● DateTime! non-null scalar​

The date and time the record was last modified.

ExhibitionBooking.lastModifiedBy ● String scalar​

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

ExhibitionBooking.meetingDiaries ● [MeetingDiary!]! non-null object​

The meeting diaries associated with this exhibition booking.

ExhibitionBooking.meetingDiary ● MeetingDiary! non-null object​

Retrieves a meeting diary by its identifier. Throws an error with code NOT_FOUND if no meeting diary is found.

ExhibitionBooking.meetingDiary.id ● ID! non-null scalar​

ExhibitionBooking.meetingPreferences ● [ExhibitionBookingToRegistrationMeetingPreference!]! non-null object​

The meeting preferences for this exhibition booking.

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).
ExhibitionBooking.meetingPreferences.limit ● PaginationLimit! non-null scalar​
ExhibitionBooking.meetingPreferences.offset ● NonNegativeInt! non-null scalar​

ExhibitionBooking.nameBadges ● [ExhibitionNameBadge!]! non-null object​

The list of name badges associated with this exhibition booking.

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).
ExhibitionBooking.nameBadges.limit ● PaginationLimit! non-null scalar​
ExhibitionBooking.nameBadges.offset ● NonNegativeInt! non-null scalar​

ExhibitionBooking.notes ● String scalar​

Notes associated with the exhibition booking. Optional.

ExhibitionBooking.paymentDetails ● ExhibitionBookingPaymentDetails! non-null object​

The payment details for the exhibition booking.

ExhibitionBooking.paymentSchedule ● [AppliedPercentagePaymentScheduleItem!]! non-null object​

The applied payment schedule for the exhibition booking.

ExhibitionBooking.positionPreference ● String scalar​

A UTF-8 string that represents the position preference for the exhibition booking. Optional.

ExhibitionBooking.profile ● String scalar​

The profile of the company hosting the exhibition stand. Optional.

ExhibitionBooking.signageInstructions ● String scalar​

A UTF-8 string that represents the signage instructions for the exhibition booking. Optional.

ExhibitionBooking.stand ● ExhibitionStand object​

The booked stand. Optional.

NOTE: This is nullable as there's a feature in the exhibition area where exhibitors can book a stand type instead of an actual stand, for example they'll book a "Standard table" instead of "Stand #1" which is of type "Standard table".

Event organizers can then assign stands to exhibitors by going to Express Actions => Exhibition Stand Allocation

ExhibitionBooking.standSignage ● String scalar​

A UTF-8 string value that represents the stand signage for the exhibition booking. Optional.

ExhibitionBooking.standType ● ExhibitionStandType! non-null object​

The type of stand that is booked.

ExhibitionBooking.status ● ExhibitionBookingStatus! non-null enum​

The status of the exhibition booking.

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

The list of taxes that apply to the exhibition booking.

Member Of​

CancelExhibitionBookingPayload object ● Contact object ● CreateExhibitionBookingPayload object ● Event object ● ExhibitionBookingPage object ● ExhibitionBookingToRegistrationMeetingPreference object ● ExhibitionFloorPlanStand object ● RegistrationToExhibitionBookingMeetingPreference object ● RegistrationWithExhibitionBookingMeeting object ● RestoreExhibitionBookingPayload object ● UpdateExhibitionBookingPayload object ● UpdateExhibitionBookingStatusPayload object