Skip to main content

Create DealerAssociate Group


ApiScope: manage.dealerassociate.group
API Scope Level: DepartmentScope
Path Parameters
    ServiceSubscriberDepartment string required
Request Body required
    name Name of the DA Group/Team
    dealerAssociateUuids DA UUIDs of DA which are member of this DA Group/Team[] deprecated
    dealerAssociateIdentifiers object[]
  • Array [
  • userUUID string
    departmentUUID string
  • ]
  • groupPhoneNumber DA Group/Team phone number
    defaultDealerAssociateUuid This is the UUID of the DA which is the default DA for this Group/Team
    defaultDealerAssociateIdentifier object
    userUUID string
    departmentUUID string
    purposeKeys Keys of the DA Group Purpose Types/Categories which are mapped to this Group/Team[]
    authorities object[]
  • Array [
  • authority string
    description string
  • ]
  • enableGroupThreadOwnership DA Group/Team will own thread, not its members
    valid boolean
    defaultCommunicationDealerAssociateGroup boolean
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
    uuid string
    virtualDealerAssociateUuid string
    virtualDealerAssociateUserUuid string
POST /v2/department/:ServiceSubscriberDepartment/dealerAssociateGroup

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
ServiceSubscriberDepartment — path required
Body required
{
"name": "string",
"dealerAssociateIdentifiers": [
{
"userUUID": "string",
"departmentUUID": "string"
}
],
"groupPhoneNumber": "string",
"defaultDealerAssociateUuid": "string",
"defaultDealerAssociateIdentifier": {
"userUUID": "string",
"departmentUUID": "string"
},
"purposeKeys": [
"string"
],
"authorities": [
{
"authority": "string",
"description": "string"
}
],
"enableGroupThreadOwnership": true,
"valid": true,
"defaultCommunicationDealerAssociateGroup": true
}
Accept
curl / cURL
curl -L -X POST '/manage/v2/department/:ServiceSubscriberDepartment/dealerAssociateGroup' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"name": "string",
"dealerAssociateIdentifiers": [
{
"userUUID": "string",
"departmentUUID": "string"
}
],
"groupPhoneNumber": "string",
"defaultDealerAssociateUuid": "string",
"defaultDealerAssociateIdentifier": {
"userUUID": "string",
"departmentUUID": "string"
},
"purposeKeys": [
"string"
],
"authorities": [
{
"authority": "string",
"description": "string"
}
],
"enableGroupThreadOwnership": true,
"valid": true,
"defaultCommunicationDealerAssociateGroup": true
}'