From 8594694f66b212d8f90f00d005dc8c4a929f2e97 Mon Sep 17 00:00:00 2001 From: Israel Abebe Date: Mon, 25 Sep 2023 11:16:25 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a0f8243..928a1a4 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ from their application via a REST API. It utilizes android phones as SMS gateway const API_KEY = 'YOUR_API_KEY'; const DEVICE_ID = 'YOUR_DEVICE_ID'; -await axios.post(`https://api.textbee.vernu.dev/api/v1/devices/${DEVICE_ID}/sendSMS?apiKey=${API_KEY}`, { +await axios.post(`https://api.textbee.vernu.dev/api/v1/gateway/devices/${DEVICE_ID}/sendSMS?apiKey=${API_KEY}`, { receivers: [ '+251912345678' ], smsBody: 'Hello World!', })