Get number of threads assigned to a list of dealer associates
Get number of threads assigned to a list of dealer associates
Path Parameters
userUUID string required
Query Parameters
includeArchived boolean
application/json
Request Body required
departmentUuids string[]
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
count object
requestUUID string
errors object[]
warnings object[]
{
"count": {},
"requestUUID": "string",
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /department/user/:userUUID/thread/count
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/communications/department/user/:userUUID/thread/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"departmentUuids": [
"string"
]
}'
python / requests
curl -L -X POST '/communications/department/user/:userUUID/thread/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"departmentUuids": [
"string"
]
}'
go / native
curl -L -X POST '/communications/department/user/:userUUID/thread/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"departmentUuids": [
"string"
]
}'
nodejs / axios
curl -L -X POST '/communications/department/user/:userUUID/thread/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"departmentUuids": [
"string"
]
}'
ruby / Net::HTTP
curl -L -X POST '/communications/department/user/:userUUID/thread/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"departmentUuids": [
"string"
]
}'
csharp / RestSharp
curl -L -X POST '/communications/department/user/:userUUID/thread/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"departmentUuids": [
"string"
]
}'
php / cURL
curl -L -X POST '/communications/department/user/:userUUID/thread/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"departmentUuids": [
"string"
]
}'
java / OkHttp
curl -L -X POST '/communications/department/user/:userUUID/thread/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"departmentUuids": [
"string"
]
}'
powershell / RestMethod
curl -L -X POST '/communications/department/user/:userUUID/thread/count' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"departmentUuids": [
"string"
]
}'