ContactStoreScopedCustomFieldDefinitions
The custom field definitions for the different types of objects within the contact store.
type ContactStoreScopedCustomFieldDefinitions {
contacts(
input: CustomFieldDefinitionSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomFieldDefinition!]!
marketingRecords(
input: CustomFieldDefinitionSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomFieldDefinition!]!
noteTypes(
input: CustomFieldDefinitionSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomFieldDefinition!]!
notes(
input: CustomFieldDefinitionSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomFieldDefinition!]!
}
Fields
ContactStoreScopedCustomFieldDefinitions.contacts ● [CustomFieldDefinition!]! non-null interface
The custom field definitions for contacts within the contact store.
See CustomFieldDefinitionSearchFilterInput
for details on how the optional input argument can be used to filter custom field definitions.
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).
ContactStoreScopedCustomFieldDefinitions.contacts.input ● CustomFieldDefinitionSearchFilterInput! non-null input
ContactStoreScopedCustomFieldDefinitions.contacts.limit ● PaginationLimit! non-null scalar
ContactStoreScopedCustomFieldDefinitions.contacts.offset ● NonNegativeInt! non-null scalar
ContactStoreScopedCustomFieldDefinitions.marketingRecords ● [CustomFieldDefinition!]! non-null interface
The custom field definitions for marketing records within the contact store.
See CustomFieldDefinitionSearchFilterInput
for details on how the optional input argument can be used to filter custom field definitions.
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).
ContactStoreScopedCustomFieldDefinitions.marketingRecords.input ● CustomFieldDefinitionSearchFilterInput! non-null input
ContactStoreScopedCustomFieldDefinitions.marketingRecords.limit ● PaginationLimit! non-null scalar
ContactStoreScopedCustomFieldDefinitions.marketingRecords.offset ● NonNegativeInt! non-null scalar
ContactStoreScopedCustomFieldDefinitions.noteTypes ● [CustomFieldDefinition!]! non-null interface
The custom field definitions for note types for the contact store.
See CustomFieldDefinitionSearchFilterInput
for details on how the optional input argument can be used to filter custom field definitions.
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).
ContactStoreScopedCustomFieldDefinitions.noteTypes.input ● CustomFieldDefinitionSearchFilterInput! non-null input
ContactStoreScopedCustomFieldDefinitions.noteTypes.limit ● PaginationLimit! non-null scalar
ContactStoreScopedCustomFieldDefinitions.noteTypes.offset ● NonNegativeInt! non-null scalar
ContactStoreScopedCustomFieldDefinitions.notes ● [CustomFieldDefinition!]! non-null interface
The custom field definitions for the contact store notes.
See CustomFieldDefinitionSearchFilterInput
for details on how the optional input argument can be used to filter custom field definitions.
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).
ContactStoreScopedCustomFieldDefinitions.notes.input ● CustomFieldDefinitionSearchFilterInput! non-null input
ContactStoreScopedCustomFieldDefinitions.notes.limit ● PaginationLimit! non-null scalar
ContactStoreScopedCustomFieldDefinitions.notes.offset ● NonNegativeInt! non-null scalar
Member Of
ContactStore object