Checks if a message needs response
Checks if a message needs response
Path Parameters
departmentUUID string required
application/json
Request Body required
messageBody string
messageUUID string
updateMessagePrediction boolean
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
needResponse boolean
errors object[]
warnings object[]
{
"needResponse": true,
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /departments/:departmentUUID/messages/needResponse
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
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
}'
python / requests
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
}'
go / native
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
}'
nodejs / axios
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
}'
ruby / Net::HTTP
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
}'
csharp / RestSharp
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
}'
php / 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
}'
java / OkHttp
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
}'
powershell / RestMethod
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
}'