CeContactStoreMarketingSetup
Defines the settings for marketing tags within the scope of a continuing education contact store.
type CeContactStoreMarketingSetup {
groups(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CeContactStoreMarketingGroup!]!
tags(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CeContactStoreMarketingTag!]!
}
Fields
CeContactStoreMarketingSetup.groups
● [CeContactStoreMarketingGroup!]!
non-null object
A list of marketing groups defined for a continuing education 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
).
CeContactStoreMarketingSetup.groups.limit
● PaginationLimit!
non-null scalar
CeContactStoreMarketingSetup.groups.offset
● NonNegativeInt!
non-null scalar
CeContactStoreMarketingSetup.tags
● [CeContactStoreMarketingTag!]!
non-null object
A list of marketing tags defined for a continuing education 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
).
CeContactStoreMarketingSetup.tags.limit
● PaginationLimit!
non-null scalar
CeContactStoreMarketingSetup.tags.offset
● NonNegativeInt!
non-null scalar
Member Of
CeContactStoreSetup
object