MembershipContactStoreContact
Encapsulates information about a contact in EventsAir.
type MembershipContactStoreContact {
associatedEventContacts(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Contact!]!
billing: BillingContact
biography: String
contactPhoneNumbers: ContactPhoneNumbers
courseRegistrations(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreCourseRegistration!]!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
department: String
externalIdentifier: String
firstName: String
functionRegistrations(
input: FunctionRegistrationSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [FunctionRegistration!]!
group: MembershipContactStoreContactGroup
id: ID!
inactiveSince: DateTime
internalNumber: PositiveInt!
isAnonymized: Boolean!
jobTitle: String
lastModifiedAt: DateTime!
lastModifiedBy: String
lastName: String
marketingPrivacy: ContactMarketingPrivacyStatus!
marketingRecords(
input: MarketingSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreMarketingRecord!]!
membershipRegistrations(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipRegistration!]!
middleName: String
notes(
input: NoteSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreNote!]!
onlineUser: OnlineUser!
organizationName: String
photo: Image
preferredName: ContactPreferredName
primaryAddress: ContactAddress
primaryEmail: EmailAddress
secondaryAddress: ContactAddress
socialMedia: ContactSocialMedia
suffix: String
taxNumber: String
title: String
useSecondaryAddress: Boolean!
userDefinedField1: String
userDefinedField2: String
userDefinedField3: String
userDefinedField4: String
website: String
workPhone: String
}
Fields
MembershipContactStoreContact.associatedEventContacts
● [Contact!]!
non-null object
A list of event contacts associated with this contact store contact.
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
).