Skip to main content

EventsAirMembershipRegistration

Represents a membership registration associated with a contact for an EventsAir membership store.

type EventsAirMembershipRegistration implements MembershipRegistration {
cancelationTaxes: [AppliedTax!]!
category: MembershipCategory!
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!
fee: Fee!
feeType: MembershipFeeType!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
membershipEndDate: LocalDate
membershipStartDate: LocalDate
paymentDetails: MembershipRegistrationPaymentDetails!
paymentEndDate: LocalDate
paymentSchedule: [AppliedPaymentScheduleItem!]
paymentScheduleSource: PaymentScheduleSource!
paymentStartDate: LocalDate
taxes: [AppliedTax!]!
type: MembershipRegistrationType!
}

Fields​

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

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

EventsAirMembershipRegistration.category ● MembershipCategory! non-null object​

The membership category of the membership registration.

EventsAirMembershipRegistration.comment ● String scalar​

The comment associated with the membership registration. Optional.

EventsAirMembershipRegistration.contact ● Contact! non-null object​

The contact associated with the membership registration.

EventsAirMembershipRegistration.createdAt ● DateTime! non-null scalar​

The date and time the record was created.

EventsAirMembershipRegistration.createdBy ● String scalar​

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

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

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

EventsAirMembershipRegistration.fee ● Fee! non-null object​

The fee includes both the amount and currency.

EventsAirMembershipRegistration.feeType ● MembershipFeeType! non-null interface​

The membership fee type of the membership registration.

EventsAirMembershipRegistration.id ● ID! non-null scalar​

The unique identifier for a membership registration.

EventsAirMembershipRegistration.lastModifiedAt ● DateTime! non-null scalar​

The date and time the record was last modified.

EventsAirMembershipRegistration.lastModifiedBy ● String scalar​

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

EventsAirMembershipRegistration.membershipEndDate ● LocalDate scalar​

The membership end date of a recurring membership registration. Optional.

EventsAirMembershipRegistration.membershipStartDate ● LocalDate scalar​

The membership start date of a recurring membership registration. Optional.

EventsAirMembershipRegistration.paymentDetails ● MembershipRegistrationPaymentDetails! non-null object​

The payment details for the membership registration.

EventsAirMembershipRegistration.paymentEndDate ● LocalDate scalar​

The payment end date of a recurring membership registration. Optional.

EventsAirMembershipRegistration.paymentSchedule ● [AppliedPaymentScheduleItem!] list object​

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

EventsAirMembershipRegistration.paymentScheduleSource ● PaymentScheduleSource! non-null enum​

The source of the payment schedule for the membership registration.

EventsAirMembershipRegistration.paymentStartDate ● LocalDate scalar​

The payment start date of a recurring membership registration. Optional.

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

The list of taxes that apply to the EventsAir membership registration booking.

EventsAirMembershipRegistration.type ● MembershipRegistrationType! non-null enum​

A value indicating the type of the membership registration item.

Interfaces​

MembershipRegistration interface​

Represents a membership registration associated with a contact in EventsAir.