Skip to main content

Update or Create DealerSetupOptions for given Dealer.


ApiScope: manage.dealer.write
API Scope Level: DealerScope
Path Parameters
    ServiceSubscriberDealer string required
Request Body required
    updateDSORequestDTOList object[]
  • Array [
  • optionKey string
    optionValue string
    validate boolean
  • ]
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
PUT /v2/dealer/:ServiceSubscriberDealer/dsos

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
ServiceSubscriberDealer — path required
Body required
{
"updateDSORequestDTOList": [
{
"optionKey": "string",
"optionValue": "string",
"validate": true
}
]
}
Accept
curl / cURL
curl -L -X PUT '/manage/v2/dealer/:ServiceSubscriberDealer/dsos' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"updateDSORequestDTOList": [
{
"optionKey": "string",
"optionValue": "string",
"validate": true
}
]
}'