Merge
Merge operations combine two records into one.
Merge two accounts
merge.merge_accounts(MergeMergeAccountsParams**kwargs) -> MergeMergeAccountsResponse
POST/v1/accounts/merge
Merge two contacts
merge.merge_contacts(MergeMergeContactsParams**kwargs) -> MergeMergeContactsResponse
POST/v1/contacts/merge
Merge two opportunities
merge.merge_opportunities(MergeMergeOpportunitiesParams**kwargs) -> MergeMergeOpportunitiesResponse
POST/v1/opportunities/merge
Merge two custom object records
merge.merge_object_values(strentity_slug, MergeMergeObjectValuesParams**kwargs) -> MergeMergeObjectValuesResponse
POST/v1/objects/{entitySlug}/merge
ModelsExpand Collapse
class MergeMergeAccountsResponse: …
class MergeMergeAccountsResponse: …
primary: Primary
primary: Primary
fields: Dict[str, PrimaryFields]Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
fields: Dict[str, PrimaryFields]
Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
class MergeMergeContactsResponse: …
class MergeMergeContactsResponse: …
primary: Primary
primary: Primary
fields: Dict[str, PrimaryFields]Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
fields: Dict[str, PrimaryFields]
Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
class MergeMergeObjectValuesResponse: …
class MergeMergeObjectValuesResponse: …
primary: Primary
primary: Primary
fields: Dict[str, PrimaryFields]Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
fields: Dict[str, PrimaryFields]
Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
class MergeMergeOpportunitiesResponse: …
class MergeMergeOpportunitiesResponse: …
primary: Primary
primary: Primary
fields: Dict[str, PrimaryFields]Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.
fields: Dict[str, PrimaryFields]
Map of field names to their typed values. System fields are prefixed with $ (e.g. $name, $email); custom attributes use their bare slug.