ActionCreateOrUpdateCustomObject
Creates or updates a Custom Object record for each contact the action runs over.
The record is attached to whatever the Custom Object definition declares a relationship to. If it declares a relationship to Account, records are created per Account (so many contacts at one account share a single record); otherwise they are created per Contact.
type ActionCreateOrUpdateCustomObject {
created_at: DateTime
created_by: User
custom_object_definition_id: ID!
fields: [CustomObjectSetFieldValue!]
id: ID!
match_field_id: ID
match_mode: CustomObjectMatchMode!
match_value: JSON
updated_at: DateTime
updated_by: User
}
Fields
ActionCreateOrUpdateCustomObject.created_at ● DateTime scalar
ActionCreateOrUpdateCustomObject.created_by ● User object
ActionCreateOrUpdateCustomObject.custom_object_definition_id ● ID! non-null scalar
ActionCreateOrUpdateCustomObject.fields ● [CustomObjectSetFieldValue!] list object
ActionCreateOrUpdateCustomObject.id ● ID! non-null scalar
ActionCreateOrUpdateCustomObject.match_field_id ● ID scalar
ActionCreateOrUpdateCustomObject.match_mode ● CustomObjectMatchMode! non-null enum
ActionCreateOrUpdateCustomObject.match_value ● JSON scalar
ActionCreateOrUpdateCustomObject.updated_at ● DateTime scalar
ActionCreateOrUpdateCustomObject.updated_by ● User object
Member Of
Action object


