recieves the sentiment prediction and marks customer upset for negative sentiment and saves the prediction
recieves the sentiment prediction and marks customer upset for negative sentiment and saves the prediction
Path Parameters
departmentUUID string required
messageUUID string required
application/json
Request Body required
sentimentScore float
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
{
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /department/:departmentUUID/message/:messageUUID/sentiment/prediction
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID/sentiment/prediction' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sentimentScore": 0
}'
python / requests
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID/sentiment/prediction' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sentimentScore": 0
}'
go / native
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID/sentiment/prediction' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sentimentScore": 0
}'
nodejs / axios
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID/sentiment/prediction' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sentimentScore": 0
}'
ruby / Net::HTTP
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID/sentiment/prediction' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sentimentScore": 0
}'
csharp / RestSharp
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID/sentiment/prediction' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sentimentScore": 0
}'
php / cURL
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID/sentiment/prediction' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sentimentScore": 0
}'
java / OkHttp
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID/sentiment/prediction' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sentimentScore": 0
}'
powershell / RestMethod
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID/sentiment/prediction' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sentimentScore": 0
}'