Skip to main content

Endpoint

POST /auth/signin

Request Body

{
  "email": "admin@example.com",
  "password": "password123"
}

Response

{
  "success": true,
  "data": {
    "id": "uuid",
    "fullname": "Admin Name",
    "email": "admin@example.com",
    "isActive": true
  }
}
Session cookie is automatically set.