Примеры сообщений
Обновлено: 8 апреля 2025
Чат-сообщение WhatsApp
к сведению
Если при отправке чат-сообщения WhatsApp указано поле attachment, поле text игнорируется и отправляется только вложение.
Сообщение с текстом
{
"requestId": "test-001",
"cascadeId": "1",
"subscriberFilter": {
"address": "79000000000",
"type": "PHONE"
},
"startTime": "2021-01-21T08:00:00Z",
"content": {
"whatsappContent": {
"contentType": "TEXT",
"text": "Добрый день! Рады представить наш новый канал для общения с клиентами. Здесь вы можете задавать все интересующие вопросы."
}
}
}
Сообщение с изображением
{
"requestId": "test-001",
"cascadeId": "1",
"subscriberFilter": {
"address": "79000000000",
"type": "PHONE"
},
"startTime": "2021-01-21T08:00:00Z",
"content": {
"whatsappContent": {
"contentType": "IMAGE",
"attachment": {
"url": "https://www.gstatic.com/webp/gallery/1.jpg",
"name": "Lorem Ipsum"
}
}
}
}
Сообщение с документом
{
"requestId": "test-001",
"cascadeId": "1",
"subscriberFilter": {
"address": "79000000000",
"type": "PHONE"
},
"startTime": "2021-01-21T08:00:00Z",
"content": {
"whatsappContent": {
"contentType": "DOCUMENT",
"attachment": {
"url": "https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf",
"name": "Lorem Ipsum"
}
}
}
}
Сообщение с видео
{
"requestId": "test-001",
"cascadeId": "1",
"subscriberFilter": {
"address": "79000000000",
"type": "PHONE"
},
"startTime": "2021-01-21T08:00:00Z",
"content": {
"whatsappContent": {
"contentType": "VIDEO",
"attachment": {
"url": "https://file-examples.com/wp-content/uploads/2017/04/file_example_MP4_480_1_5MG.mp4",
"name": "Lorem Ipsum"
}
}
}
}
Сообщение с аудио
{
"requestId": "test-001",
"cascadeId": "1",
"subscriberFilter": {
"address": "79000000000",
"type": "PHONE"
},
"startTime": "2021-01-21T08:00:00Z",
"content": {
"whatsappContent": {
"contentType": "AUDIO",
"attachment": {
"url": "https://dl.espressif.com/dl/audio/ff-16b-2c-44100hz.aac",
"name": "Lorem Ipsum"
}
}
}
}
Сообщение с геолокацией
{
"requestId": "test-001",
"cascadeId": "1",
"subscriberFilter": {
"address": "79000000000",
"type": "PHONE"
},
"startTime": "2021-01-21T08:00:00Z",
"content": {
"whatsappContent": {
"contentType": "LOCATION",
"location": {
"longitude": "163",
"latitude": "48",
"address": "г. Москва, ул. Правды, д. 3",
"name": "ООО Компания"
}
}
}
}