Skip to main content

printing thread for customer

printing thread for customer

Path Parameters
    departmentUUID string required
    customerUUID string required
Request Body required
    fromDate date-time
    toDate date-time
    lastNMessages int32
    messageType string
    messageProtocol string
    toEmailList string[]
    sendPdf boolean
    showInternalComments boolean
Responses

OK


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

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",
"lastNMessages": 0,
"messageType": "string",
"messageProtocol": "string",
"toEmailList": [
"string"
],
"sendPdf": true,
"showInternalComments": true
}
curl / cURL
curl -L -X POST '/communications/department/:departmentUUID/customer/:customerUUID/printThreadForCustomer' \
-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",
"lastNMessages": 0,
"messageType": "string",
"messageProtocol": "string",
"toEmailList": [
"string"
],
"sendPdf": true,
"showInternalComments": true
}'