Skip to main content

Delete DealerSetupOptions for given Dealer.


ApiScope: manage.dealer.write
API Scope Level: DealerScope
Path Parameters
    dealerUUID 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
DELETE /v2/dealers/:dealerUUID/dsos

Authorization

name: basicAuthtype: httpscheme: basic

Request

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