Welcome to the WABA API documentation. This guide will help you understand how to use our API effectively.
All API endpoints require authentication using JWT tokens.
Authorization: Bearer YOUR_TOKENExample using cURL:
curl -X POST http://localhost:8000/api/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email":"user@example.com","password":"password"}'
Example using JavaScript:
fetch('http://localhost:8000/api/v1/auth/login', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: 'user@example.com',
password: 'password'
})
})
Use the interactive API documentation to:
مرحباً بك في وثائق WABA API. سيساعدك هذا الدليل على فهم كيفية استخدام واجهة برمجة التطبيقات بشكل فعال.
جميع نقاط نهاية API تتطلب المصادقة باستخدام رموز JWT.
Authorization: Bearer YOUR_TOKENمثال باستخدام cURL:
curl -X POST http://localhost:8000/api/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email":"user@example.com","password":"password"}'
Bienvenido a la documentación de la API de WABA. Esta guía te ayudará a entender cómo usar nuestra API de manera efectiva.
Todos los endpoints de la API requieren autenticación usando tokens JWT.
Authorization: Bearer YOUR_TOKENBienvenue dans la documentation de l'API WABA. Ce guide vous aidera à comprendre comment utiliser notre API efficacement.
Tous les endpoints de l'API nécessitent une authentification à l'aide de tokens JWT.
Authorization: Bearer YOUR_TOKEN