server-api
Installation
SKILL.md
Steedos Server API | Steedos 服务端 API
Overview | 概述
The Steedos Server exposes REST APIs under the /api/v6/ namespace. All data/object/function endpoints require authentication via AuthGuard.
Steedos 服务端在 /api/v6/ 命名空间下提供 REST API。所有数据/对象/函数端点需要身份认证。
Authentication | 认证
All protected endpoints use cookie-based authentication:
- Cookies:
X-Space-Id(tenant ID) +X-Auth-Token(auth token) - Bearer Token:
Authorization: Bearer <token>(Swagger/API calls)
The server extracts user context as: { user: userId, space: spaceId }.
Swagger / OpenAPI
Related skills