Skip to main content

Endpoint

POST /auth/signin

Request Body

{
  "email": "[email protected]",
  "password": "password123"
}

Response

{
  "success": true,
  "data": {
    "id": "uuid",
    "fullname": "Admin Name",
    "email": "[email protected]",
    "isActive": true
  }
}
Session cookie is automatically set.