Delegates thread(s) to passed dealer associate
Delegates thread(s) to passed dealer associate
Path Parameters
dealerUUID string required
application/json
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
bulkAutoDelegate object
userDelegationDetail object
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
delegationUUID string
totalNumberOfDelegations int32
successfulDelegations int32
failedDelegations int32
status string
Possible values: [SUCCESS
, FAILURE
]
errors object[]
warnings object[]
{
"delegationUUID": "string",
"totalNumberOfDelegations": 0,
"successfulDelegations": 0,
"failedDelegations": 0,
"status": "SUCCESS",
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
PUT /dealers/:dealerUUID/delegate
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
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"
}
}'
python / requests
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"
}
}'
go / native
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"
}
}'
nodejs / axios
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"
}
}'
ruby / Net::HTTP
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"
}
}'
csharp / RestSharp
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"
}
}'
php / 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"
}
}'
java / OkHttp
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"
}
}'
powershell / RestMethod
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"
}
}'