MembershipContactStore
Represents an EventsAir membership contact store.
type MembershipContactStore {
accessRights: AccessRights!
alias: String!
associatedEvents(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Event!]!
communicationTags(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CommunicationTag!]!
contact(
id: ID!
): MembershipContactStoreContact!
contacts(
input: MembershipContactStoreContactSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreContact!]!
country: String
courseRegistrations(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreCourseRegistration!]!
createdAt: DateTime!
createdBy: String
currencies: [Currency!]!
customFieldDefinitions: MembershipContactStoreScopedCustomFieldDefinitions!
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
defaultCurrency: Currency!
emailMessagingService: EmailMessagingService
functionRegistrations(
input: FunctionRegistrationSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [FunctionRegistration!]!
id: ID!
invoice(
id: ID!
): Invoice!
invoiceConfiguration: InvoiceConfiguration
invoices(
input: InvoiceSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Invoice!]!
lastModifiedAt: DateTime!
lastModifiedBy: String
link(
id: ID!
): Link!
links: [Link!]!
logo: Image
marketingRecords(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreMarketingRecord!]!
mergeDocuments(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MergeDocument!]!
name: String!
notes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreNote!]!
office: Office!
onlinePaymentServices: OnlinePaymentServices!
payment(
id: ID!
): Payment!
payments(
input: PaymentSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Payment!]!
setup: MembershipContactStoreSetup!
state: String
textMessagingService: TextMessagingService
timezone: TimeZone!
uniqueCode: String
userAccessRights: UserAccessRights! @deprecated
}
Fields
MembershipContactStore.accessRights
● AccessRights!
non-null object
Indicates which users or API keys in EventsAir can access this membership contact store.
MembershipContactStore.alias
● String!
non-null scalar
A UTF-8 alphanumeric string representing an alias for a membership contact store. The alias is used as part of the URL for websites.
An alias can only contain lower-case, alphameric and hyphen characters: [a-z0-9-]
.
MembershipContactStore.associatedEvents
● [Event!]!
non-null object
A list of events associated with this membership contact store.
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
).
MembershipContactStore.associatedEvents.limit
● PaginationLimit!
non-null scalar
MembershipContactStore.associatedEvents.offset
● NonNegativeInt!
non-null scalar
MembershipContactStore.communicationTags
● [CommunicationTag!]!
non-null object
A list of communication tags for this membership contact store.
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
).
MembershipContactStore.communicationTags.limit
● PaginationLimit!
non-null scalar
MembershipContactStore.communicationTags.offset
● NonNegativeInt!
non-null scalar
MembershipContactStore.contact
● MembershipContactStoreContact!
non-null object
Retrieves a contact by its identifier. Throws an error with code NOT_FOUND
if no contact is found.
MembershipContactStore.contact.id
● ID!
non-null scalar
MembershipContactStore.contacts
● [MembershipContactStoreContact!]!
non-null object
Contacts for this membership contact store that match the filter criteria specified in the optional input
argument.
By default, inactive contacts are not returned.
To include inactive contacts in the result set, set input.contactFilter.includeInactive
to true
.
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
).
Note: the offset
argument must be a multiple of the limit
argument otherwise an error will be thrown. The following table
shows examples of valid and invalid argument value combinations.
limit | offset | Is valid? |
---|---|---|
100 | 0 | ✅ Yes |
100 | 100 | ✅ Yes |
100 | 120 | ❌ No |
50 | 100 | ✅ Yes |
50 | 75 | ❌ No |
250 | 750 | ✅ Yes |
33 | 99 | ✅ Yes |
33 | 100 | ❌ No |
Throws an error with code:
BAD_USER_INPUT
if theoffset
argument is not a multiple of thelimit
argumentBAD_USER_INPUT
if all fields in the input have a combined total number of values exceeding 1,000
MembershipContactStore.contacts.input
● MembershipContactStoreContactSearchFilterInput!
non-null input
MembershipContactStore.contacts.limit
● PaginationLimit!
non-null scalar
MembershipContactStore.contacts.offset
● NonNegativeInt!
non-null scalar
MembershipContactStore.country
● String
scalar
The name of the country for the membership contact store. For example The United States of America
. Optional.
MembershipContactStore.courseRegistrations
● [MembershipContactStoreCourseRegistration!]!
non-null object
The course registrations for this membership contact store.
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
).
MembershipContactStore.courseRegistrations.limit
● PaginationLimit!
non-null scalar
MembershipContactStore.courseRegistrations.offset
● NonNegativeInt!
non-null scalar
MembershipContactStore.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
MembershipContactStore.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
MembershipContactStore.currencies
● [Currency!]!
non-null object
A list of supported currencies for the membership contact store.
MembershipContactStore.customFieldDefinitions
● MembershipContactStoreScopedCustomFieldDefinitions!
non-null object
A list of custom field definitions associated with this membership contact store. The provided key identifies which type of object the fields relate too.