curl -X POST https://api.chatmaid.net/v1/messages/send \
-H "Authorization: Bearer sk_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"from": "+1234567890",
"to": "+0987654321",
"content": "Your order has shipped!"
}'# Response{
"success": true,
"data": {
"messageId": "msg_abc123",
"status": "sent",
"createdAt": "2024-01-15T10:30:00Z"
}
}