curl -X POST "https://accounts.netvox.ng/api/v2/SendBulkSMS" \
-H "Content-Type: application/json" \
-d '{
"SenderId": "YOUR_SENDER_ID",
"Is_Unicode": true,
"Is_Flash": false,
"SchedTime": "",
"Messages": [
{
"Number": "1234567890",
"Text": "Hello John, your order is ready!"
},
{
"Number": "0987654321",
"Text": "Hello Jane, your appointment is tomorrow at 2 PM"
}
],
"ApiKey": "YOUR_API_KEY",
"ClientId": "YOUR_CLIENT_ID"
}'