Umami · JSON Structure

Umami Login Response Structure

Successful login response with token and user info

Type: object Properties: 2
Cookieless TrackingOpen SourcePrivacyWeb AnalyticsWebsite Analytics

Umami Login Response Structure is a JSON Structure definition published by Umami, describing 2 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

token user

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/umami/refs/heads/main/json-structure/umami-login-response-structure.json",
  "title": "LoginResponse",
  "description": "Successful login response with token and user info",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "description": "JWT bearer token for API authentication"
    },
    "user": {
      "type": "object",
      "ref": "User",
      "description": ""
    }
  }
}