fetch messages for given ids/uuids
fetch messages for given ids/uuids
Path Parameters
departmentUUID string required
userUuid string required
application/json
Request Body required
messageUuids string[]
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
messageDTOList object[]
requestUuid string
errors object[]
warnings object[]
{
"messageDTOList": [
{
"id": 0,
"uuid": "string",
"messageType": "string",
"protocol": "string",
"fromName": "string",
"fromNumber": "string",
"toName": "string",
"toNumber": "string",
"messageSize": 0,
"sentOn": "2025-03-28T11:34:43.275Z",
"receivedOn": "2025-03-28T11:34:43.275Z",
"tags": "string",
"emailMessageId": "string",
"communicationUid": "string",
"messagePurpose": "string",
"deliveryStatus": "string",
"dealerDepartmentUuid": "string",
"twilioDeliveryFailureMessage": "string",
"numberofMessageAttachments": 0,
"isManual": true,
"customerUuid": "string",
"customerName": "string",
"dealerUuid": "string",
"dealerAssociateUuid": "string",
"isRead": true,
"isArchive": true,
"messageExtnDTO": {
"messageUuid": "string",
"messageBody": "string",
"subject": "string"
},
"draftMessageMetaDataDTO": {
"messageUuid": "string",
"status": "string",
"scheduledOn": "2025-03-28T11:34:43.275Z",
"reasonForLastFailure": "string",
"addSignature": true
},
"messageMetaDataDTO": {
"messageUuid": "string",
"metaData": "string"
},
"docFiles": [
{
"docFileName": "string",
"fileExtension": "string",
"mimeType": "string",
"originalFileName": "string",
"docSize": "string",
"thumbnailFileName": "string",
"mediaPreviewURL": "string",
"messageUuid": "string"
}
],
"messagePredictionDTOSet": [
{
"messageUuid": "string",
"predictionFeature": {
"id": 0,
"predictionFeature": "string"
},
"prediction": "string",
"metadata": "string",
"messagePredictionFeedback": [
{
"messagePredictionID": 0,
"userFeedback": "string",
"feedbackReason": "string",
"userUUID": "string",
"departmentUUID": "string"
}
]
}
],
"messageTags": {
"tagTypes": [
{
"uuid": "string",
"dealerUuid": "string",
"name": "string",
"displayName": "string",
"description": "string",
"dataType": "BOOLEAN",
"iconResourceId": "string",
"rank": "string",
"parentTagTypeUuids": [
"string"
],
"apiPaths": {
"searchTags": "string",
"getTagDetails": "string"
},
"uiFilteringAllowed": true,
"uiStyle": "string"
}
],
"tags": [
{
"tagTypeUuid": "string",
"referenceIdentifier": "string",
"value": {},
"primaryAttribute": {
"value": "string"
},
"secondaryAttributes": [
{
"value": "string"
}
],
"parentTags": [
{
"tagTypeUuid": "string",
"referenceIdentifier": "string"
}
]
}
]
}
}
],
"requestUuid": "string",
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /department/:departmentUUID/user/:userUuid/message/list
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/communications/department/:departmentUUID/user/:userUuid/message/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageUuids": [
"string"
]
}'
python / requests
curl -L -X POST '/communications/department/:departmentUUID/user/:userUuid/message/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageUuids": [
"string"
]
}'
go / native
curl -L -X POST '/communications/department/:departmentUUID/user/:userUuid/message/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageUuids": [
"string"
]
}'
nodejs / axios
curl -L -X POST '/communications/department/:departmentUUID/user/:userUuid/message/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageUuids": [
"string"
]
}'
ruby / Net::HTTP
curl -L -X POST '/communications/department/:departmentUUID/user/:userUuid/message/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageUuids": [
"string"
]
}'
csharp / RestSharp
curl -L -X POST '/communications/department/:departmentUUID/user/:userUuid/message/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageUuids": [
"string"
]
}'
php / cURL
curl -L -X POST '/communications/department/:departmentUUID/user/:userUuid/message/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageUuids": [
"string"
]
}'
java / OkHttp
curl -L -X POST '/communications/department/:departmentUUID/user/:userUuid/message/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageUuids": [
"string"
]
}'
powershell / RestMethod
curl -L -X POST '/communications/department/:departmentUUID/user/:userUuid/message/list' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageUuids": [
"string"
]
}'