fetch messages count for given message property
fetch messages count for given message property
Path Parameters
departmentUUID string required
customerUUID string required
application/json
Request Body required
protocols string[]
Possible values: [TEXT
, EMAIL
, VOICE_CALL
, NONE
]
types string[]
Possible values: [DRAFT
, DISCARDED_DRAFT
, OUTGOING
, INCOMING
, NOTE
]
isManual boolean
tags object[]
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
messageCount int64
requestUuid string
errors object[]
warnings object[]
{
"messageCount": 0,
"requestUuid": "string",
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /departments/:departmentUUID/customers/:customerUUID/messages/count
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/communications/departments/:departmentUUID/customers/:customerUUID/messages/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"protocols": [
"TEXT"
],
"types": [
"DRAFT"
],
"isManual": true,
"tags": [
{
"tagTypeUuid": "string",
"value": {}
}
]
}'
python / requests
curl -L -X POST '/communications/departments/:departmentUUID/customers/:customerUUID/messages/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"protocols": [
"TEXT"
],
"types": [
"DRAFT"
],
"isManual": true,
"tags": [
{
"tagTypeUuid": "string",
"value": {}
}
]
}'
go / native
curl -L -X POST '/communications/departments/:departmentUUID/customers/:customerUUID/messages/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"protocols": [
"TEXT"
],
"types": [
"DRAFT"
],
"isManual": true,
"tags": [
{
"tagTypeUuid": "string",
"value": {}
}
]
}'
nodejs / axios
curl -L -X POST '/communications/departments/:departmentUUID/customers/:customerUUID/messages/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"protocols": [
"TEXT"
],
"types": [
"DRAFT"
],
"isManual": true,
"tags": [
{
"tagTypeUuid": "string",
"value": {}
}
]
}'
ruby / Net::HTTP
curl -L -X POST '/communications/departments/:departmentUUID/customers/:customerUUID/messages/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"protocols": [
"TEXT"
],
"types": [
"DRAFT"
],
"isManual": true,
"tags": [
{
"tagTypeUuid": "string",
"value": {}
}
]
}'
csharp / RestSharp
curl -L -X POST '/communications/departments/:departmentUUID/customers/:customerUUID/messages/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"protocols": [
"TEXT"
],
"types": [
"DRAFT"
],
"isManual": true,
"tags": [
{
"tagTypeUuid": "string",
"value": {}
}
]
}'
php / cURL
curl -L -X POST '/communications/departments/:departmentUUID/customers/:customerUUID/messages/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"protocols": [
"TEXT"
],
"types": [
"DRAFT"
],
"isManual": true,
"tags": [
{
"tagTypeUuid": "string",
"value": {}
}
]
}'
java / OkHttp
curl -L -X POST '/communications/departments/:departmentUUID/customers/:customerUUID/messages/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"protocols": [
"TEXT"
],
"types": [
"DRAFT"
],
"isManual": true,
"tags": [
{
"tagTypeUuid": "string",
"value": {}
}
]
}'
powershell / RestMethod
curl -L -X POST '/communications/departments/:departmentUUID/customers/:customerUUID/messages/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"protocols": [
"TEXT"
],
"types": [
"DRAFT"
],
"isManual": true,
"tags": [
{
"tagTypeUuid": "string",
"value": {}
}
]
}'