Skip to main content

Get DealerAddresses for given Dealers


ApiScope: manage.dealer.read
API Scope Level: MultiDealerScope
Request Body required
    dealerUuids string[]
    validate boolean
    doNotValidate boolean
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
    dealersAddresses object
    property name* AddressDTO
    line1 string
    line2 string
    city string
    zip string
    zipExt string
    phone string
    stateCode string
    stateDescription string
    countryCode string
    country string
    latitude float
    longitude float
    altitude float
POST /v2/dealer/address/list

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
Body required
{
"dealerUuids": [
"string"
],
"validate": true,
"doNotValidate": true
}
Accept
curl / cURL
curl -L -X POST '/manage/v2/dealer/address/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerUuids": [
"string"
],
"validate": true,
"doNotValidate": true
}'