send Message
send Message
Path Parameters
departmentUUID string required
messageUUID string required
application/json
Request Body required
sendSynchronously boolean
delay int32
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
messageUUID string
status string
Possible values: [SUCCESS
, FAILURE
]
requestUUID string
customerUUID string
metaData object
errors object[]
warnings object[]
{
"messageUUID": "string",
"status": "SUCCESS",
"requestUUID": "string",
"customerUUID": "string",
"metaData": {},
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /department/:departmentUUID/message/:messageUUID
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sendSynchronously": true,
"delay": 0
}'
python / requests
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sendSynchronously": true,
"delay": 0
}'
go / native
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sendSynchronously": true,
"delay": 0
}'
nodejs / axios
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sendSynchronously": true,
"delay": 0
}'
ruby / Net::HTTP
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sendSynchronously": true,
"delay": 0
}'
csharp / RestSharp
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sendSynchronously": true,
"delay": 0
}'
php / cURL
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sendSynchronously": true,
"delay": 0
}'
java / OkHttp
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sendSynchronously": true,
"delay": 0
}'
powershell / RestMethod
curl -L -X POST '/communications/department/:departmentUUID/message/:messageUUID' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"sendSynchronously": true,
"delay": 0
}'