Skip to main content

getAddressesForCustomers

getAddressesForCustomers

Request Body required
    requesterUserUUID string
    dealerUUIDList string[]
    customerUUIDs string[]
    addressType string

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

Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • customerAddressMap object
    property name* Address
    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
POST /v2/address

Request

Base URL
/customer
Body required
{
"requesterUserUUID": "string",
"dealerUUIDList": [
"string"
],
"customerUUIDs": [
"string"
],
"addressType": "COMMON"
}
Accept
curl / cURL
curl -L -X POST '/customer/v2/address' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"requesterUserUUID": "string",
"dealerUUIDList": [
"string"
],
"customerUUIDs": [
"string"
],
"addressType": "COMMON"
}'