Skip to main content

Add list of automated template for a dealer


ApiScope: manage.dealer.write
API Scope Level: DealerScope
Path Parameters
    ServiceSubscriberDealer string required
Request Body required
    templates object[]
  • Array [
  • template string
    templateTypeUuid string
    locale string
    templateType string
    templateTypeName string
    templateTypeDesc string
    featureCategory string
    updateTs string
    isSmartTemplate boolean
    resourceUuid string
    uuid string
  • ]
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/dealers/:ServiceSubscriberDealer/automatedTemplates

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
ServiceSubscriberDealer — path required
Body required
{
"templates": [
{
"template": "string",
"templateTypeUuid": "string",
"locale": "string",
"templateType": "string",
"templateTypeName": "string",
"templateTypeDesc": "string",
"featureCategory": "string",
"updateTs": "string",
"isSmartTemplate": true,
"resourceUuid": "string",
"uuid": "string"
}
]
}
Accept
curl / cURL
curl -L -X POST '/manage/v2/dealers/:ServiceSubscriberDealer/automatedTemplates' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"templates": [
{
"template": "string",
"templateTypeUuid": "string",
"locale": "string",
"templateType": "string",
"templateTypeName": "string",
"templateTypeDesc": "string",
"featureCategory": "string",
"updateTs": "string",
"isSmartTemplate": true,
"resourceUuid": "string",
"uuid": "string"
}
]
}'