feishu-calendar

飞书日历。创建日程、查询日程、更新日程。

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "feishu-calendar" with this command: npx skills add alextangson/feishu_skills/alextangson-feishu-skills-feishu-calendar

飞书日历

通过 Calendar API 管理日程。

Base URL: https://open.feishu.cn/open-apis/calendar/v4


日程操作

API端点方法请求体示例说明
创建日程/calendars/{calendar_id}/eventsPOST{"summary":"会议标题","start_time":{"timestamp":"1770508800"},"end_time":{"timestamp":"1770512400"}}创建新日程
获取日程/calendars/{calendar_id}/events/{event_id}GET-查询日程详情
更新日程/calendars/{calendar_id}/events/{event_id}PATCH{"summary":"新标题"}修改日程
删除日程/calendars/{calendar_id}/events/{event_id}DELETE-删除日程
搜索日程/calendars/{calendar_id}/events/searchPOST{"query":"关键词","start_time":{"timestamp":"1770508800"}}条件搜索
获取日程列表/calendars/{calendar_id}/eventsGET-查询日历下所有日程

创建日程:

{
  "summary": "会议标题",
  "start_time": {"timestamp": "1770508800"},
  "end_time": {"timestamp": "1770512400"},
  "attendees": [{"type": "user", "attendee_id": "ou_xxx"}]
}

attendees type: user / chat / resource(会议室)


日程参与人

API端点方法请求体示例说明
获取参与人/calendars/{calendar_id}/events/{event_id}/attendeesGET-查询参与人列表
添加参与人/calendars/{calendar_id}/events/{event_id}/attendeesPOST{"attendees":[{"type":"user","attendee_id":"ou_xxx"}]}邀请参与人
删除参与人/calendars/{calendar_id}/events/{event_id}/attendees/{attendee_id}DELETE-移除参与人
获取参与群成员/calendars/{calendar_id}/events/{event_id}/attendees/chat_membersGET-查询群参与成员

日历管理

API端点方法请求体示例说明
获取日历列表/calendarsGET查询参数:page_size=50&page_token=xxx查询所有日历(分页)
获取主日历/calendars/primaryGET-查询用户主日历
创建日历/calendarsPOST{"summary":"日历名称","description":"描述","permissions":"public"}创建共享日历
获取日历/calendars/{calendar_id}GET-查询日历详情
更新日历/calendars/{calendar_id}PATCH{"summary":"新名称"}修改日历
删除日历/calendars/{calendar_id}DELETE-删除日历
搜索日历/calendars/searchPOST{"query":"关键词"}搜索日历

日历订阅与 ACL

API端点方法请求体示例说明
获取 ACL 列表/calendars/{calendar_id}/aclsGET-查询日历权限
创建 ACL/calendars/{calendar_id}/aclsPOST{"role":"reader","scope":{"type":"user","user_id":"ou_xxx"}}添加权限
删除 ACL/calendars/{calendar_id}/acls/{acl_id}DELETE-移除权限
订阅日历/calendars/{calendar_id}/subscribePOST-订阅日历变更
取消订阅/calendars/{calendar_id}/unsubscribePOST-取消日历订阅
订阅日程事件/calendars/{calendar_id}/events/subscribePOST-订阅日程变更
取消日程订阅/calendars/{calendar_id}/events/unsubscribePOST-取消日程订阅

ACL role: none / free_busy_reader / reader / writer / owner


会议室管理

API端点方法请求体示例说明
获取会议室列表/roomsGET-查询所有会议室
获取会议室/rooms/{room_id}GET-查询会议室详情
查询会议室忙闲/rooms/{room_id}/freebusyGET-查询会议室可用时间

常见参数说明

时间格式:

  • timestamp: 秒级时间戳(如 "1770508800"
  • date: 日期字符串(如 "2026-03-07"

分页参数:

  • page_size: 每页数量(默认 50,最大 500)
  • page_token: 分页标记(从上次响应获取)

user_id_type: 用户 ID 类型

  • open_id(默认)
  • user_id
  • union_id

测试示例

获取日历列表:

curl -X GET "https://open.feishu.cn/open-apis/calendar/v4/calendars?page_size=10" \
  -H "Authorization: Bearer YOUR_TOKEN"

创建日程:

curl -X POST "https://open.feishu.cn/open-apis/calendar/v4/calendars/primary/events" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "summary": "团队会议",
    "start_time": {"timestamp": "1709798400"},
    "end_time": {"timestamp": "1709802000"}
  }'

最佳实践

  1. 时间用秒级时间戳
  2. attendees 指定类型(user/chat/resource)
  3. 分页查询:大量数据用 page_token 分页
  4. 主日历:用户个人日历用 primary 作为 calendar_id

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

feishu-bitable

No summary provided by upstream source.

Repository SourceNeeds Review
General

feishu-card

No summary provided by upstream source.

Repository SourceNeeds Review
General

feishu-doc-writer

No summary provided by upstream source.

Repository SourceNeeds Review
General

feishu-im

No summary provided by upstream source.

Repository SourceNeeds Review