CustomObjectMatchMode
How the action decides whether to write to an existing record or create a new one.
enum CustomObjectMatchMode {
ALWAYS_CREATE
MATCH_ON_FIELD
MOST_RECENT_FOR_ANCHOR
}
Values
CustomObjectMatchMode.ALWAYS_CREATE
Create a new record every time the action runs.
CustomObjectMatchMode.MATCH_ON_FIELD
Find the record whose chosen field equals a given value, or create one if there is no match.
CustomObjectMatchMode.MOST_RECENT_FOR_ANCHOR
Update the most recent existing record, or create one if there is none.
Member Of
ActionCreateOrUpdateCustomObject object ● CreateActionCreateOrUpdateCustomObjectInput input ● PatchableCreateOrUpdateCustomObjectFields input


