Send announcement
How to send a message (announcement) to the community via API
How to find the correct Announcements group
GET /communities/{CommunityID}/subgroupsLast updated
How to send a message (announcement) to the community via API
GET /communities/{CommunityID}/subgroupsLast updated
curl --request POST \
--url https://gate.whapi.cloud/messages/text \
--header 'accept: application/json' \
--header 'authorization: Bearer {your_token}' \
--header 'content-type: application/json' \
--data '
{
"to": "[email protected]",
"body": "My first announcement"
}
'