Authentication API (Login API)
Authenticate securely with the Tellius Login API—manage user sessions, integrate with custom apps, and enable seamless access via RESTful endpoints.
Endpoint
POST https://<your-tellius-domain>/api/auth/logincurl 'https://qa1.dev.tellius.com/api/auth/login' \
-H 'sec-ch-ua-platform: "macOS"' \
-H 'Referer: https://qa1.dev.tellius.com/login' \
-H 'sec-ch-ua: "Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"' \
-H 'sec-ch-ua-mobile: ?0' \
-H 'csrf: 2rp6y9fqnek' \
-H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36' \
-H 'Accept: application/json, text/plain, */*' \
-H 'Content-Type: application/json' \
--data-raw '{"username":"<your_username>","password":"<your_password>"}'Request example
{
"username": "your_username",
"password": "your_password"
}Response example
Session-based vs Token-based Authentication
Was this helpful?