Merge contacts
POST
/contacts/{target_id}/mergeThe information from the contact_ids
will be merged into the target_id
. If the target_id
already has data in a specific field, that data will remain unchanged. If a field in the target_id
is empty, it will be populated with the corresponding data from the contact_ids
. The contact_ids
will be removed from the system.
Request
Path Params
target_id
integer
required
Contact Target
Example:
67
Body Params application/x-www-form-urlencoded
contact_ids
string
required
Contact to be merged into target. This contact will be removed from the system. Separated by comma for sending more than one ID.
Example:
72,74
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
success
boolean
required
status_code
integer
required
errors
array[string]
required
data
array[string]
required
Exampleresponse
{
"success": true,
"status_code": 200,
"errors": [],
"data": []
}
Last modified: 3 months ago