Skip to main content

save auto delegation configuration for dealer

save auto delegation configuration for dealer

Path Parameters
    dealerUUID string required
Request Body required
    dealerUuid string
    autoDelegationConfigType string

    Possible values: [ALL, INDIVIDUAL]

    allAutoDelegationConfig object
    delegatee object
    uuid string
    name string
    type string

    Possible values: [USER, CUSTOMER]

    departmentUuid string
    individualAutoDelegationConfig object[]
  • Array [
  • delegator object
    uuid string
    name string
    type string

    Possible values: [USER, CUSTOMER]

    departmentUuid string
    delegatee object
    uuid string
    name string
    type string

    Possible values: [USER, CUSTOMER]

    departmentUuid string
  • ]
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode string
    errorDescription string
    errorUID string
  • ]
  • warnings object[]
  • Array [
  • warningCode string
    warningDescription string
  • ]
PUT /dealers/:dealerUUID/auto-delegation-map

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/communications
Username
Password
dealerUUID — path required
Body required
{
"dealerUuid": "string",
"autoDelegationConfigType": "ALL",
"allAutoDelegationConfig": {
"delegatee": {
"uuid": "string",
"name": "string",
"type": "USER",
"departmentUuid": "string"
}
},
"individualAutoDelegationConfig": [
{
"delegator": {
"uuid": "string",
"name": "string",
"type": "USER",
"departmentUuid": "string"
},
"delegatee": {
"uuid": "string",
"name": "string",
"type": "USER",
"departmentUuid": "string"
}
}
]
}
curl / cURL
curl -L -X PUT '/communications/dealers/:dealerUUID/auto-delegation-map' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerUuid": "string",
"autoDelegationConfigType": "ALL",
"allAutoDelegationConfig": {
"delegatee": {
"uuid": "string",
"name": "string",
"type": "USER",
"departmentUuid": "string"
}
},
"individualAutoDelegationConfig": [
{
"delegator": {
"uuid": "string",
"name": "string",
"type": "USER",
"departmentUuid": "string"
},
"delegatee": {
"uuid": "string",
"name": "string",
"type": "USER",
"departmentUuid": "string"
}
}
]
}'