Skip to main content

Archive Thread

Archive Thread

Path Parameters
    departmentUUID string required
Request Body required
    archiveEventDataList object[]
  • Array [
  • dealerUUID string
    customerUUID string
    dealerDepartmentUUID string
    threadUUID string
    customerThreadOwnerUser object
    id int64
    departmentUuid string
    userUuid string
    assigneeName string
    status boolean
  • ]
  • archiveActionUser object
    id int64
    departmentUuid string
    userUuid string
    isSuperInboxAllUser boolean
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode string
    errorDescription string
    errorUID string
  • ]
  • warnings object[]
  • Array [
  • warningCode string
    warningDescription string
  • ]
PUT /departments/:departmentUUID/thread/archive

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/communications
Username
Password
departmentUUID — path required
Body required
{
"archiveEventDataList": [
{
"dealerUUID": "string",
"customerUUID": "string",
"dealerDepartmentUUID": "string",
"threadUUID": "string",
"customerThreadOwnerUser": {
"id": 0,
"departmentUuid": "string",
"userUuid": "string"
},
"assigneeName": "string",
"status": true
}
],
"archiveActionUser": {
"id": 0,
"departmentUuid": "string",
"userUuid": "string"
},
"isSuperInboxAllUser": true
}
curl / cURL
curl -L -X PUT '/communications/departments/:departmentUUID/thread/archive' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"archiveEventDataList": [
{
"dealerUUID": "string",
"customerUUID": "string",
"dealerDepartmentUUID": "string",
"threadUUID": "string",
"customerThreadOwnerUser": {
"id": 0,
"departmentUuid": "string",
"userUuid": "string"
},
"assigneeName": "string",
"status": true
}
],
"archiveActionUser": {
"id": 0,
"departmentUuid": "string",
"userUuid": "string"
},
"isSuperInboxAllUser": true
}'