UpdateCeContactStoreMarketingRecordInput
Defines the input for updating a marketing record in a continuing education contact store.
input UpdateCeContactStoreMarketingRecordInput {
ceContactStoreId: ID!
contactId: ID!
customFields: [CustomFieldInput!]
recordId: ID!
value: JSON
}
Fields
UpdateCeContactStoreMarketingRecordInput.ceContactStoreId ● ID! non-null scalar
The identifier of the continuing education contact store associated with the marketing record.
UpdateCeContactStoreMarketingRecordInput.contactId ● ID! non-null scalar
The identifier of the contact associated with the marketing record.
UpdateCeContactStoreMarketingRecordInput.customFields ● [CustomFieldInput!] list input
The custom fields to update or create for the marketing record. Optional.
UpdateCeContactStoreMarketingRecordInput.recordId ● ID! non-null scalar
The identifier of the marketing record to update.
UpdateCeContactStoreMarketingRecordInput.value ● JSON scalar
The value of the marketing record. Optional.
Expected type depending on the marketing tag type:
| Marketing tag type | Expected type |
|---|---|
TAG_ONLY | Don't supply value field |
TEXT | A string |
NUMERIC | A numeric value |
DATE | A date represented as a string with the yyyy-MM-dd format |
SUB_TAG | The desired value of the sub-tag |
Member Of
updateCeContactStoreMarketingRecord mutation