Skip to main content

Add list of manual template for a dealer


ApiScope: manage.dealer.write
API Scope Level: DealerScope
Path Parameters
    ServiceSubscriberDealer string required
    ServiceSubscriberDepartment string required
Request Body required
    templates object[]
  • Array [
  • title string
    template string
    updateTs 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/dealer/:ServiceSubscriberDealer/department/:ServiceSubscriberDepartment/manualTemplates

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
ServiceSubscriberDealer — path required
ServiceSubscriberDepartment — path required
Body required
{
"templates": [
{
"title": "string",
"template": "string",
"updateTs": "string"
}
]
}
Accept
curl / cURL
curl -L -X POST '/manage/v2/dealer/:ServiceSubscriberDealer/department/:ServiceSubscriberDepartment/manualTemplates' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"templates": [
{
"title": "string",
"template": "string",
"updateTs": "string"
}
]
}'