send a bot message to user
only supports text currently
Path Parameters
departmentUUID string required
userUUID string required
application/json
Request Body required
messageAttributes object
messageSendingAttributes object
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
requestUuid string
status string
Possible values: [SUCCESS
, FAILURE
]
messageUuid string
errors object[]
warnings object[]
{
"requestUuid": "string",
"status": "SUCCESS",
"messageUuid": "string",
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /department/:departmentUUID/user/:userUUID/botmessage/send
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/communications/department/:departmentUUID/user/:userUUID/botmessage/send' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageAttributes": {
"body": "string",
"type": "DRAFT",
"protocol": "TEXT",
"purpose": "F",
"isManual": true,
"numberOfMessageAttachments": 0,
"subject": "string"
},
"messageSendingAttributes": {
"recipientCommunicationValue": "string",
"senderName": "string"
}
}'
python / requests
curl -L -X POST '/communications/department/:departmentUUID/user/:userUUID/botmessage/send' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageAttributes": {
"body": "string",
"type": "DRAFT",
"protocol": "TEXT",
"purpose": "F",
"isManual": true,
"numberOfMessageAttachments": 0,
"subject": "string"
},
"messageSendingAttributes": {
"recipientCommunicationValue": "string",
"senderName": "string"
}
}'
go / native
curl -L -X POST '/communications/department/:departmentUUID/user/:userUUID/botmessage/send' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageAttributes": {
"body": "string",
"type": "DRAFT",
"protocol": "TEXT",
"purpose": "F",
"isManual": true,
"numberOfMessageAttachments": 0,
"subject": "string"
},
"messageSendingAttributes": {
"recipientCommunicationValue": "string",
"senderName": "string"
}
}'
nodejs / axios
curl -L -X POST '/communications/department/:departmentUUID/user/:userUUID/botmessage/send' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageAttributes": {
"body": "string",
"type": "DRAFT",
"protocol": "TEXT",
"purpose": "F",
"isManual": true,
"numberOfMessageAttachments": 0,
"subject": "string"
},
"messageSendingAttributes": {
"recipientCommunicationValue": "string",
"senderName": "string"
}
}'
ruby / Net::HTTP
curl -L -X POST '/communications/department/:departmentUUID/user/:userUUID/botmessage/send' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageAttributes": {
"body": "string",
"type": "DRAFT",
"protocol": "TEXT",
"purpose": "F",
"isManual": true,
"numberOfMessageAttachments": 0,
"subject": "string"
},
"messageSendingAttributes": {
"recipientCommunicationValue": "string",
"senderName": "string"
}
}'
csharp / RestSharp
curl -L -X POST '/communications/department/:departmentUUID/user/:userUUID/botmessage/send' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageAttributes": {
"body": "string",
"type": "DRAFT",
"protocol": "TEXT",
"purpose": "F",
"isManual": true,
"numberOfMessageAttachments": 0,
"subject": "string"
},
"messageSendingAttributes": {
"recipientCommunicationValue": "string",
"senderName": "string"
}
}'
php / cURL
curl -L -X POST '/communications/department/:departmentUUID/user/:userUUID/botmessage/send' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageAttributes": {
"body": "string",
"type": "DRAFT",
"protocol": "TEXT",
"purpose": "F",
"isManual": true,
"numberOfMessageAttachments": 0,
"subject": "string"
},
"messageSendingAttributes": {
"recipientCommunicationValue": "string",
"senderName": "string"
}
}'
java / OkHttp
curl -L -X POST '/communications/department/:departmentUUID/user/:userUUID/botmessage/send' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageAttributes": {
"body": "string",
"type": "DRAFT",
"protocol": "TEXT",
"purpose": "F",
"isManual": true,
"numberOfMessageAttachments": 0,
"subject": "string"
},
"messageSendingAttributes": {
"recipientCommunicationValue": "string",
"senderName": "string"
}
}'
powershell / RestMethod
curl -L -X POST '/communications/department/:departmentUUID/user/:userUUID/botmessage/send' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"messageAttributes": {
"body": "string",
"type": "DRAFT",
"protocol": "TEXT",
"purpose": "F",
"isManual": true,
"numberOfMessageAttachments": 0,
"subject": "string"
},
"messageSendingAttributes": {
"recipientCommunicationValue": "string",
"senderName": "string"
}
}'