Skip to main content

updateCustomer

updateCustomer

Path Parameters
    serviceSubscriberDepartmentToken string required
    customerID string required
Request Body required
    requesterUserUUID string
    dealerUUIDList string[]
    customer object
    customerKey string
    firstName string
    lastName string
    company string
    isBusiness boolean
    bestTimeToContact object
    startTime string
    endTime string
    preferredCommunication string
    addresses object[]
  • Array [
  • line1 string
    line2 string
    city string
    zip string
    addressType string
    type string

    Possible values: [COMMON, PRIMARY, BILLING, OTHER]

    country string
    updateTS date-time
    uuid string
    isValid boolean
    isPreferred boolean
    state string
  • ]
  • preferredLocale string
    customerUuid string
    emails object[]
  • Array [
  • emailAddress string
    label string
    okToEmail boolean
    isPreferred boolean
    comments string
  • ]
  • phoneNumbers object[]
  • Array [
  • phoneNumber string
    label string
    okToCall boolean
    okToText boolean
    isPreferred boolean
    comments string
  • ]
  • vehicles object[]
  • Array [
  • vin string
    vehicleYear string
    vehicleMake string
    vehicleModel string
    estimatedMileage string
    vehicleKey string
    vehicleTrim string
    licensePlate string
    color string
    vehicleUuid string
    vehicleEngine string
    isMatching boolean
    isValid boolean
  • ]
  • validateVin boolean
    searchForDuplicate boolean
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
POST /v2/department/:serviceSubscriberDepartmentToken/customer/:customerID

Request

Base URL
/customer
serviceSubscriberDepartmentToken — path required
customerID — path required
Body required
{
"requesterUserUUID": "string",
"dealerUUIDList": [
"string"
],
"customer": {
"customerKey": "string",
"firstName": "string",
"lastName": "string",
"company": "string",
"isBusiness": true,
"bestTimeToContact": {
"startTime": "string",
"endTime": "string"
},
"preferredCommunication": "string",
"addresses": [
{
"line1": "string",
"line2": "string",
"city": "string",
"zip": "string",
"addressType": "string",
"type": "COMMON",
"country": "string",
"updateTS": "2025-04-07T07:51:23.899Z",
"uuid": "string",
"isValid": true,
"isPreferred": true,
"state": "string"
}
],
"preferredLocale": "string",
"customerUuid": "string",
"emails": [
{
"emailAddress": "string",
"label": "string",
"okToEmail": true,
"isPreferred": true,
"comments": "string"
}
],
"phoneNumbers": [
{
"phoneNumber": "string",
"label": "string",
"okToCall": true,
"okToText": true,
"isPreferred": true,
"comments": "string"
}
]
},
"vehicles": [
{
"vin": "string",
"vehicleYear": "string",
"vehicleMake": "string",
"vehicleModel": "string",
"estimatedMileage": "string",
"vehicleKey": "string",
"vehicleTrim": "string",
"licensePlate": "string",
"color": "string",
"vehicleUuid": "string",
"vehicleEngine": "string",
"isMatching": true,
"isValid": true
}
],
"validateVin": true,
"searchForDuplicate": true
}
Accept
curl / cURL
curl -L -X POST '/customer/v2/department/:serviceSubscriberDepartmentToken/customer/:customerID' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"requesterUserUUID": "string",
"dealerUUIDList": [
"string"
],
"customer": {
"customerKey": "string",
"firstName": "string",
"lastName": "string",
"company": "string",
"isBusiness": true,
"bestTimeToContact": {
"startTime": "string",
"endTime": "string"
},
"preferredCommunication": "string",
"addresses": [
{
"line1": "string",
"line2": "string",
"city": "string",
"zip": "string",
"addressType": "string",
"type": "COMMON",
"country": "string",
"updateTS": "2025-04-07T07:51:23.899Z",
"uuid": "string",
"isValid": true,
"isPreferred": true,
"state": "string"
}
],
"preferredLocale": "string",
"customerUuid": "string",
"emails": [
{
"emailAddress": "string",
"label": "string",
"okToEmail": true,
"isPreferred": true,
"comments": "string"
}
],
"phoneNumbers": [
{
"phoneNumber": "string",
"label": "string",
"okToCall": true,
"okToText": true,
"isPreferred": true,
"comments": "string"
}
]
},
"vehicles": [
{
"vin": "string",
"vehicleYear": "string",
"vehicleMake": "string",
"vehicleModel": "string",
"estimatedMileage": "string",
"vehicleKey": "string",
"vehicleTrim": "string",
"licensePlate": "string",
"color": "string",
"vehicleUuid": "string",
"vehicleEngine": "string",
"isMatching": true,
"isValid": true
}
],
"validateVin": true,
"searchForDuplicate": true
}'