Skip to main content

UpdateContactStoreMarketingRecordInput

Defines the input for updating a marketing record in a contact store.

input UpdateContactStoreMarketingRecordInput {
contactId: ID!
contactStoreId: ID!
customFields: [CustomFieldInput!]
recordId: ID!
value: JSON
}

Fields

UpdateContactStoreMarketingRecordInput.contactId ● ID! non-null scalar

The identifier of the contact associated with the marketing record.

UpdateContactStoreMarketingRecordInput.contactStoreId ● ID! non-null scalar

The identifier of the contact store associated with the marketing record.

UpdateContactStoreMarketingRecordInput.customFields ● [CustomFieldInput!] list input

The custom fields to update or create for the marketing record. Optional.

UpdateContactStoreMarketingRecordInput.recordId ● ID! non-null scalar

The identifier of the marketing record to update.

UpdateContactStoreMarketingRecordInput.value ● JSON scalar

The value of the marketing record. Optional.

Expected type depending on the marketing tag type:

Marketing tag typeExpected type
TAG_ONLYDon't supply value field
TEXTA string
NUMERICA numeric value
DATEA date represented as a string with the yyyy-MM-dd format
SUB_TAGThe desired value of the sub-tag

Member Of

updateContactStoreMarketingRecord mutation