InoWP, sci‑fi esintili arayüzle WhatsApp entegrasyonunu otomasyon, basit CRM ve API ile birleştirir: gelecekten gelen teknolojiyi bugünün iş akışlarına indirir.
Basit ve güvenli REST API ile mesaj gönderin, webhook'ları işleyin ve kişi yönetimi yapın. Tüm çağrılar Authorization: Bearer <TOKEN> kullanır.
curl -X POST https://api.inowp.com/v1/messages \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json" \
-d '{ "to":"+905555555555", "text":"Merhaba! InoWP API denemesi." }'
import axios from "axios";
const api = axios.create({
baseURL: "https://api.inowp.com/v1",
headers: { Authorization: "Bearer <TOKEN>" }
});
await api.post("/messages", { to: "+905555555555", text: "Merhaba! InoWP API denemesi." });
use Illuminate\Support\Facades\Http;
$response = Http::withToken('<TOKEN>')
->post('https://api.inowp.com/v1/messages', [
'to' => '+905555555555',
'text' => 'Merhaba! InoWP API denemesi.',
]);
if ($response->successful()) {
// ok
}
Ücretsiz planla deneyin, ihtiyaca göre Pro/Elite’e yükseltin.