Skip to main content

fetchMessageCountForCustomer

fetchMessageCountForCustomer

Path Parameters
    departmentUUID string required
    customerUUID string required
Request Body required
    fromDate date-time
    toDate date-time
Responses

OK


Schema
    messageCount int64
    errors object[]
  • Array [
  • errorCode string
    errorDescription string
    errorUID string
  • ]
  • warnings object[]
  • Array [
  • warningCode string
    warningDescription string
  • ]
POST /department/:departmentUUID/customer/:customerUUID/messageCount

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/communications
Username
Password
departmentUUID — path required
customerUUID — path required
Body required
{
"fromDate": "2025-03-28T11:34:43.232Z",
"toDate": "2025-03-28T11:34:43.232Z"
}
curl / cURL
curl -L -X POST '/communications/department/:departmentUUID/customer/:customerUUID/messageCount' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"fromDate": "2025-03-28T11:34:43.232Z",
"toDate": "2025-03-28T11:34:43.232Z"
}'