预订
列出、查看并筛选各场地的预订,包含签到状态。
在 /api/v1 下的二十三个带版本端点。Bearer 认证、受限权限、按令牌限流,且每次调用都有审计日志。
# Generate a token in Dashboard → Integrations.
# The secret is shown once and stored as a SHA-256 hash.
curl https://kourtiva.com/api/v1/me \
-H "Authorization: Bearer $KOURTIVA_TOKEN"
# 401 on an invalid, expired or revoked token.
# 403 when the token lacks the required ability.
# 429 once the rate limit is exceeded.
列出、查看并筛选各场地的预订,包含签到状态。
场地定义及其可预订时段,按日期显示空档。
你提供的运动项目,以及每个场馆附属的设施。
在你场馆注册的球员及其预订历史。
与产生它们的预订相关联的财务记录。
赛事、已报名队伍与赛程。
客流量统计与汇总,用于使用率报表。
你自己的场馆记录——令牌解析出的租户。
GET /api/v1/courts/12/slots?date=2026-08-09
{
"data": [
{ "starts_at": "08:00", "available": true },
{ "starts_at": "09:00", "available": false },
{ "starts_at": "10:00", "available": true }
]
}