ContactStoreMarketingSetup
Defines the settings for marketing tags within the scope of a contact store.
type ContactStoreMarketingSetup {
groups(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ContactStoreMarketingGroup!]!
tags(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ContactStoreMarketingTag!]!
}
Fields
ContactStoreMarketingSetup.groups ● [ContactStoreMarketingGroup!]! non-null object
A list of marketing groups defined for a contact store.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
ContactStoreMarketingSetup.groups.limit ● PaginationLimit! non-null scalar
ContactStoreMarketingSetup.groups.offset ● NonNegativeInt! non-null scalar
ContactStoreMarketingSetup.tags ● [ContactStoreMarketingTag!]! non-null object
A list of marketing tags defined for a contact store.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
ContactStoreMarketingSetup.tags.limit ● PaginationLimit! non-null scalar
ContactStoreMarketingSetup.tags.offset ● NonNegativeInt! non-null scalar
Member Of
ContactStoreSetup object