Skip to main content

ContactStoreScopedCustomFieldTabs

The custom field tabs for the different types of objects within the contact store.

type ContactStoreScopedCustomFieldTabs {
contacts(
input: CustomFieldTabSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomFieldTab!]!
marketingRecords(
input: CustomFieldTabSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomFieldTab!]!
notes(
input: CustomFieldTabSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomFieldTab!]!
}

Fields

ContactStoreScopedCustomFieldTabs.contacts ● [CustomFieldTab!]! non-null object

The custom field tabs for contacts within the contact store.

See CustomFieldTabSearchFilterInput for details on how the optional input argument can be used to filter custom field tabs.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
ContactStoreScopedCustomFieldTabs.contacts.input ● CustomFieldTabSearchFilterInput! non-null input
ContactStoreScopedCustomFieldTabs.contacts.limit ● PaginationLimit! non-null scalar
ContactStoreScopedCustomFieldTabs.contacts.offset ● NonNegativeInt! non-null scalar

ContactStoreScopedCustomFieldTabs.marketingRecords ● [CustomFieldTab!]! non-null object

The custom field tabs for marketing records within the contact store.

See CustomFieldTabSearchFilterInput for details on how the optional input argument can be used to filter custom field tabs.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
ContactStoreScopedCustomFieldTabs.marketingRecords.input ● CustomFieldTabSearchFilterInput! non-null input
ContactStoreScopedCustomFieldTabs.marketingRecords.limit ● PaginationLimit! non-null scalar
ContactStoreScopedCustomFieldTabs.marketingRecords.offset ● NonNegativeInt! non-null scalar

ContactStoreScopedCustomFieldTabs.notes ● [CustomFieldTab!]! non-null object

The custom field tabs for notes within the contact store.

See CustomFieldTabSearchFilterInput for details on how the optional input argument can be used to filter custom field tabs.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
ContactStoreScopedCustomFieldTabs.notes.input ● CustomFieldTabSearchFilterInput! non-null input
ContactStoreScopedCustomFieldTabs.notes.limit ● PaginationLimit! non-null scalar
ContactStoreScopedCustomFieldTabs.notes.offset ● NonNegativeInt! non-null scalar

Member Of

ContactStore object