XL Messenger Developer Docs
Welcome — this documentation helps developers integrate messaging, auth, workspaces, audit, and the public REST API.
Authentication
XL Messenger uses token-based authentication. Request tokens via /api/v1/login:
POST /api/v1/login
Content-Type: application/json
{
"email":"admin@example.com",
"password":"yourpassword"
}
Sending Messages via API
Example: POST /api/v1/messages
POST /api/v1/messages
Authorization: Bearer <TOKEN>
Content-Type: application/json
{
"channelId": "C123",
"text": "Hello from API"
}
Try the API (local tester)
Response