CeContactStore
Represents an EventsAir continuing education contact store.
type CeContactStore {
accessRights: AccessRights!
alias: String!
associatedEvents(
input: FindEventsInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Event!]!
communicationTags(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CommunicationTag!]!
contact(
id: ID!
): CeContactStoreContact!
contactGroups(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CeContactStoreContactGroup!]!
contacts(
input: CeContactStoreContactSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CeContactStoreContact!]!
country: String
courseRegistrations(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CeContactStoreCourseRegistration!]!
createdAt: DateTime!
createdBy: String
currencies: [Currency!]!
customFieldDefinitions: CeContactStoreScopedCustomFieldDefinitions!
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
): [CeContactStoreFunctionRegistration!]!
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
): [CeContactStoreMarketingRecord!]!
mergeDocuments(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MergeDocument!]!
name: String!
notes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CeContactStoreNote!]!
office: Office!
onlinePaymentServices: OnlinePaymentServices!
payment(
id: ID!
): Payment!
payments(
input: PaymentSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [Payment!]!
setup: CeContactStoreSetup!
state: String
textMessagingService: TextMessagingService
timezone: TimeZone!
uniqueCode: String
userAccessRights: UserAccessRights! @deprecated
}
Fields
CeContactStore.accessRights
● AccessRights!
non-null object
Indicates which users or API keys in EventsAir can access this continuing education contact store.
CeContactStore.alias
● String!
non-null scalar
A UTF-8 alphanumeric string representing an alias for a continuing education 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-]
.
CeContactStore.associatedEvents
● [Event!]!
non-null object
A list of events associated with this continuing education contact store.
See FindEventsInput
for details on how the input
argument can be used to filter events.
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
).