Skip to main content

Delegates thread(s) to passed dealer associate

Delegates thread(s) to passed dealer associate

Path Parameters
    dealerUUID string required
Request Body required
    delegator string

    Possible values: [DEALER_ASSOCIATE, AUTO_DELEGATION, OUT_OF_OFFICE_TURN_OFF, OUT_OF_OFFICE_START, ADMIN_TOOL, OTHER, BULK_AUTO_DELEGATE, BULK_AUTO_DELEGATE_FOR_ALL_DEALER, ADMIN_TOOL_USER_DELEGATION, AUTOMATIC_DELEGATION]

    outOfOfficeTurnOffDelegation object
    outOfOfficeStartDate string
    outOfOfficeDealerAssociateUUID string
    outOfOfficeDelegateeUUID string
    runAsynchronously boolean
    bulkAutoDelegate object
    applyRuleToCheckForOutgoingCommExistsForDA boolean
    customerUUIDList string[]
    logInMongo boolean
    toDealerAssociateUUID string
    userDelegationDetail object
    delegatedToUUID string
    delegatorUUID string
    delegator string

    Possible values: [DEALER_ASSOCIATE, AUTO_DELEGATION, OUT_OF_OFFICE_TURN_OFF, OUT_OF_OFFICE_START, ADMIN_TOOL, OTHER, BULK_AUTO_DELEGATE, BULK_AUTO_DELEGATE_FOR_ALL_DEALER, ADMIN_TOOL_USER_DELEGATION, AUTOMATIC_DELEGATION]

    delegatedFromUUID string
Responses

OK


Schema
    delegationUUID string
    totalNumberOfDelegations int32
    successfulDelegations int32
    failedDelegations int32
    status string

    Possible values: [SUCCESS, FAILURE]

    errors object[]
  • Array [
  • errorCode string
    errorDescription string
    errorUID string
  • ]
  • warnings object[]
  • Array [
  • warningCode string
    warningDescription string
  • ]
PUT /dealers/:dealerUUID/delegate

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/communications
Username
Password
dealerUUID — path required
Body required
{
"delegator": "DEALER_ASSOCIATE",
"outOfOfficeTurnOffDelegation": {
"outOfOfficeStartDate": "string",
"outOfOfficeDealerAssociateUUID": "string",
"outOfOfficeDelegateeUUID": "string",
"runAsynchronously": true
},
"bulkAutoDelegate": {
"applyRuleToCheckForOutgoingCommExistsForDA": true,
"customerUUIDList": [
"string"
],
"logInMongo": true,
"toDealerAssociateUUID": "string"
},
"userDelegationDetail": {
"delegatedToUUID": "string",
"delegatorUUID": "string",
"delegator": "DEALER_ASSOCIATE",
"delegatedFromUUID": "string"
}
}
curl / cURL
curl -L -X PUT '/communications/dealers/:dealerUUID/delegate' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"delegator": "DEALER_ASSOCIATE",
"outOfOfficeTurnOffDelegation": {
"outOfOfficeStartDate": "string",
"outOfOfficeDealerAssociateUUID": "string",
"outOfOfficeDelegateeUUID": "string",
"runAsynchronously": true
},
"bulkAutoDelegate": {
"applyRuleToCheckForOutgoingCommExistsForDA": true,
"customerUUIDList": [
"string"
],
"logInMongo": true,
"toDealerAssociateUUID": "string"
},
"userDelegationDetail": {
"delegatedToUUID": "string",
"delegatorUUID": "string",
"delegator": "DEALER_ASSOCIATE",
"delegatedFromUUID": "string"
}
}'