Send text, media, and location messages
curl -X POST https://api.wazzapi.io/api/v1/messages \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "to": "+1234567890", "type": "text", "text": { "body": "Hello, world!" } }'
curl -X POST https://api.wazzapi.io/api/v1/messages \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "to": "+1234567890", "type": "image", "image": { "link": "https://example.com/image.png" } }'
curl -X POST https://api.wazzapi.io/api/v1/messages \ -d '{ "to": "+1234567890", "type": "location", "location": { "longitude": -122.4194, "latitude": 37.7749, "name": "San Francisco", "address": "San Francisco, CA" } }'