Skip to main content

Update or Create DealerSetupOption for given OptionKey and Dealer. OptionKey should be provided as a path parameter.


ApiScope: manage.dealer.write
API Scope Level: DealerScope
Path Parameters
    ServiceSubscriberDealer string required
    optionKey string required
Request Body required
    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
POST /v2/dealer/:ServiceSubscriberDealer/dso/:optionKey

Authorization

name: basicAuthtype: httpscheme: basic

Request

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