curl --request POST \
--url http://localhost:5300/api/v1/platform/bots/{bot_uuid}/send_message \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"target_type": "group",
"target_id": "123456789",
"message_chain": [
{
"type": "Plain",
"text": "Hello, World!"
}
]
}
'