For the complete documentation index, see llms.txt. This page is also available as Markdown.

Login

User login

post
/auth/login

This endpoint allows a user to log in by providing their username and password.

Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Body
usernamestringRequiredExample: user123
passwordstringRequiredExample: securepassword123
Responses
200

Login successful

*/*
statusintegerOptional
messagestringOptional
post/auth/login
POST /backend/api/auth/login HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: */*
Accept: */*
Content-Length: 53

{
  "username": "user123",
  "password": "securepassword123"
}
{
  "status": 1,
  "message": "Logged in successfully"
}