Login
Login with email and password to receive an authentication token.
POST
https://api.uptimetea.com/auth/loginHeaders
Content-TypeREQUIRED
STRING
application/jsonResponse body
{
"id": "uuid",
"first_name": "John",
"last_name": "Doe",
"email": "user@example.com",
"avatar_url": null,
"locale": "en",
"timezone": "UTC",
"theme": "light",
"token": "your-api-token"
}Code Examples
curl -X POST "https://api.uptimetea.com/auth/login" \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"password": "securepassword"
}'