DocsHTTP APILog in

Log in

Log in. Use POST /auth/login in Chronoverse, with authentication, parameters, and response details.

POST
/auth/login

Validates credentials and issues session and CSRF cookies.

Authentication

No authentication required.

Parameters

This operation has no path, query, header, or cookie parameters.

Request body

required
application/json
{
  "type": "object",
  "required": [
    "email",
    "password"
  ],
  "properties": {
    "email": {
      "type": "string",
      "format": "email"
    },
    "password": {
      "type": "string",
      "format": "password",
      "minLength": 8,
      "maxLength": 72
    }
  }
}

Responses

201

Session created

400

Invalid input or missing required idempotency key

401

Invalid email or password

413

Request body exceeds the 4 MiB ingress limit

429

Ingress rate or connection limit exceeded for the client address