API Keys
Manage account-level API keys for S2S integration.
API Credentials
Replace https://pati.wablas.com/ with this base URL in your app.
https://wa.fujicon.id/apiLoading
Loading API keys…
How to use
Pass your API key in the Authorization header. Target a specific device via the X-Device-ID header or ?device_id= query param.
# Send a text message curl -X POST https://wa.fujicon.id/api/send/message/text/bulk \ -H "Authorization: Bearer YOUR_TOKEN" \ -H "X-Device-ID: YOUR_DEVICE_ID" \ -H "Content-Type: application/json" \ -d '{"phone":"628123456789","message":"Hello from WA Gateway"}' # Alternative: pass token as query param curl -X POST "https://wa.fujicon.id/api/send/message/text/bulk?token=YOUR_TOKEN&device_id=YOUR_DEVICE_ID" \ -H "Content-Type: application/json" \ -d '{"phone":"628123456789","message":"Hello"}'
Find your Device ID on the Devices page.