Skip to main content

Update message filter

Update message filter

Path Parameters
    departmentUUID string required
    filterName string required
Request Body required
    eventRaisedByUUID string
    actionTaken string

    Possible values: [DISMISS_AS_NOT_WAITING_FOR_RESPONSE, DISMISS_AS_ALREADY_RESPONDED, ADD_TO_WAITING_FOR_RESPONSE, ADD_TO_MISSED_CALL, MESSAGE_SENT]

    dealerUUID string
    dealerDepartmentIUUID string
    actionSource string
    customerUUIDAndThreadUUID object
    property name* string
    messageUUID string
    call boolean
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode string
    errorDescription string
    errorUID string
  • ]
  • warnings object[]
  • Array [
  • warningCode string
    warningDescription string
  • ]
POST /departments/:departmentUUID/filter/:filterName

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/communications
Username
Password
departmentUUID — path required
filterName — path required
Body required
{
"eventRaisedByUUID": "string",
"actionTaken": "DISMISS_AS_NOT_WAITING_FOR_RESPONSE",
"dealerUUID": "string",
"dealerDepartmentIUUID": "string",
"actionSource": "string",
"customerUUIDAndThreadUUID": {},
"messageUUID": "string",
"call": true
}
curl / cURL
curl -L -X POST '/communications/departments/:departmentUUID/filter/:filterName' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"eventRaisedByUUID": "string",
"actionTaken": "DISMISS_AS_NOT_WAITING_FOR_RESPONSE",
"dealerUUID": "string",
"dealerDepartmentIUUID": "string",
"actionSource": "string",
"customerUUIDAndThreadUUID": {},
"messageUUID": "string",
"call": true
}'