Skip to main content

saveCustomerMetaData

saveCustomerMetaData

Path Parameters
    serviceSubscriberDepartmentToken string required
    customerID string required
Request Body required
    requesterUserUUID string
    dealerUUIDList string[]
    customerNotes string
    calledDAUUID string
    dmsCustomerID string
Responses

OK


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

Request

Base URL
/customer
serviceSubscriberDepartmentToken — path required
customerID — path required
Body required
{
"requesterUserUUID": "string",
"dealerUUIDList": [
"string"
],
"customerNotes": "string",
"calledDAUUID": "string",
"dmsCustomerID": "string"
}
Accept
curl / cURL
curl -L -X POST '/customer/v2/department/:serviceSubscriberDepartmentToken/customer/:customerID/metadata' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"requesterUserUUID": "string",
"dealerUUIDList": [
"string"
],
"customerNotes": "string",
"calledDAUUID": "string",
"dmsCustomerID": "string"
}'