{
  "openapi": "3.0.3",
  "info": {
    "title": "OpenAPI 接口 - 登录令牌校验",
    "version": "1.0.0",
    "description": "OpenAPI 接口相关接口文档"
  },
  "paths": {
    "/openapi/memberships/login/verify": {
      "post": {
        "summary": "登录令牌校验",
        "description": "对登录接口返回的访问令牌进行有效性校验，确认令牌是否过期、账号状态及黑名单状态。",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "登录接口返回的访问令牌，格式为 Bearer TOKEN",
            "example": "Bearer {token}"
          },
          {
            "name": "X-System-Code",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "系统编码。用于指定当前登录的业务系统（例如 AUTH_MANAGEMENT、CONTENT_MANAGEMENT）。当系统不支持时将返回“登录用户不支持当前系统，可联系管理员处理”。"
          }
        ],
        "responses": {
          "200": {
            "description": "成功响应",
            "content": {
              "application/json": {
                "example": {
                  "success": {
                    "code": "0000",
                    "message": "登录令牌校验成功",
                    "data": {
                      "phone": "13800138000",
                      "id": "USER000001",
                      "_id": "MNFIOHH6QOA3kg0z"
                    }
                  },
                  "failure": {
                    "code": "1300",
                    "message": "登录令牌无效或已过期",
                    "data": null
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}