Skip to main content

Checks if a message needs response

Checks if a message needs response

Path Parameters
    departmentUUID string required
Request Body required
    messageBody string
    messageUUID string
    updateMessagePrediction boolean
Responses

OK


Schema
    needResponse boolean
    errors object[]
  • Array [
  • errorCode string
    errorDescription string
    errorUID string
  • ]
  • warnings object[]
  • Array [
  • warningCode string
    warningDescription string
  • ]
POST /departments/:departmentUUID/messages/needResponse

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/communications
Username
Password
departmentUUID — path required
Body required
{
"messageBody": "string",
"messageUUID": "string",
"updateMessagePrediction": true
}
curl / cURL
curl -L -X POST '/communications/departments/:departmentUUID/messages/needResponse' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageBody": "string",
"messageUUID": "string",
"updateMessagePrediction": true
}'