Skip to main content

bulkMergeCustomer

bulkMergeCustomer

Path Parameters
    serviceSubscriberDepartmentToken string required
    customerGUID string required
Request Body required
    customerGUIDs string[]
    firstName string
    lastName string
    preferredEmail string
    preferredPhone string
    primaryCustomerGUID string
    company string
    requestedBy string
    isManual boolean
Responses

OK

POST /v2/department/:serviceSubscriberDepartmentToken/customer/:customerGUID/bulk_merge

Request

Base URL
/customer
serviceSubscriberDepartmentToken — path required
customerGUID — path required
Body required
{
"customerGUIDs": [
"string"
],
"firstName": "string",
"lastName": "string",
"preferredEmail": "string",
"preferredPhone": "string",
"primaryCustomerGUID": "string",
"company": "string",
"requestedBy": "string",
"isManual": true
}
curl / cURL
curl -L -X POST '/customer/v2/department/:serviceSubscriberDepartmentToken/customer/:customerGUID/bulk_merge' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"customerGUIDs": [
"string"
],
"firstName": "string",
"lastName": "string",
"preferredEmail": "string",
"preferredPhone": "string",
"primaryCustomerGUID": "string",
"company": "string",
"requestedBy": "string",
"isManual": true
}'