Skip to main content

Create department

Create department
ApiScope: manage.department.write
API Scope Level: MultiDealerScope

Request Body required
    departmentType string
    contactFName string
    contactLName string
    textNumber string
    emailAddress string
    phoneNumber string
    commmunicationGroup string
    dealerUUID string
    createdByInternalCommunication boolean
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
    departmentUUID string
POST /v2/departments/

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
Body required
{
"departmentType": "string",
"contactFName": "string",
"contactLName": "string",
"textNumber": "string",
"emailAddress": "string",
"phoneNumber": "string",
"commmunicationGroup": "string",
"dealerUUID": "string",
"createdByInternalCommunication": true
}
Accept
curl / cURL
curl -L -X POST '/manage/v2/departments/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"departmentType": "string",
"contactFName": "string",
"contactLName": "string",
"textNumber": "string",
"emailAddress": "string",
"phoneNumber": "string",
"commmunicationGroup": "string",
"dealerUUID": "string",
"createdByInternalCommunication": true
}'