返回顶部
c

cleaning-and-maintenance清洁与维护

Schedule cleanings, manage maintenance tasks, check availability, and add service professionals with TIDY.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
117
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

cleaning-and-maintenance

清洁与维护 — TIDY

通过TIDY API安排和管理清洁任务、创建维护工单、检查预订可用性以及添加服务专业人员。专为物业经理、Airbnb房东和清洁服务协调员设计。

身份验证

所有请求都需要Bearer令牌。

bash

登录


curl -X POST https://public-api.tidy.com/api/v2/auth/login \
-H Content-Type: application/json \
-d {email:jane@example.com,password:secret123}

返回:{ token: abc123... }

export TIDYAPITOKEN=abc123...

令牌永不过期。在所有请求中包含 Authorization: Bearer $TIDYAPITOKEN。



任务(清洁预订)

任务代表已安排的清洁预约。

服务类型

服务类型键描述
regularcleaning.onehour1小时常规清洁
regularcleaning.twoandahalf_hours
2.5小时常规清洁 | | regularcleaning.fourhours | 4小时常规清洁 | | deepcleaning.twoandahalf_hours | 2.5小时深度清洁 | | deepcleaning.fourhours | 4小时深度清洁 | | turnovercleaning.twoandahalf_hours | 2.5小时退房清洁 | | turnovercleaning.fourhours | 4小时退房清洁 |

预订状态

已安排 → 进行中 → 已完成 或 已取消 或 失败

检查可用性

在创建预订前,检查可用时间段:

bash
curl -s https://public-api.tidy.com/api/v2/booking-availabilities?addressid=123&servicetypekey=regularcleaning.twoandahalfhours \
-H Authorization: Bearer $TIDYAPITOKEN

必需: addressid,servicetype_key。

列出所有任务

bash
curl -s https://public-api.tidy.com/api/v2/jobs \
-H Authorization: Bearer $TIDYAPITOKEN

按地址筛选

curl -s https://public-api.tidy.com/api/v2/jobs?address_id=123 \ -H Authorization: Bearer $TIDYAPITOKEN

按状态筛选(逗号分隔)

curl -s https://public-api.tidy.com/api/v2/jobs?status=scheduled,in_progress \ -H Authorization: Bearer $TIDYAPITOKEN

按待办清单筛选

curl -s https://public-api.tidy.com/api/v2/jobs?todolist_id=789 \ -H Authorization: Bearer $TIDYAPITOKEN

获取单个任务

bash
curl -s https://public-api.tidy.com/api/v2/jobs/456 \
-H Authorization: Bearer $TIDYAPITOKEN

响应字段:id,addressid,todolistid,status,price,servicetypekey,servicetypename,currentstartdatetime(date,time),preferredstartdatetime(date,time),startnoearlierthan(date,time),endnolaterthan(date,time),ispartiallycompleted,cancelledby,url,createdat。

创建任务

bash
curl -X POST https://public-api.tidy.com/api/v2/jobs \
-H Authorization: Bearer $TIDYAPITOKEN \
-H Content-Type: application/json \
-d {
address_id: 123,
servicetypekey: regularcleaning.twoandahalf_hours,
startnoearlier_than: { date: 2026-04-10, time: 09:00 },
endnolater_than: { date: 2026-04-10, time: 17:00 },
preferredstartdatetime: { date: 2026-04-10, time: 10:00 },
todolist_id: 789
}

必需: addressid,servicetypekey,startnoearlierthan(含date和time),endnolater_than(含date和time)。

可选: preferredstartdatetime(含date,time),todolist_id。

时间窗口(startnoearlierthan到endnolaterthan)定义了服务提供者可以到达的时间范围。preferredstartdatetime是该窗口内的软偏好。

日期格式:YYYY-MM-DD。时间格式:HH:MM(24小时制)。

更新任务

bash
curl -X PUT https://public-api.tidy.com/api/v2/jobs/456 \
-H Authorization: Bearer $TIDYAPITOKEN \
-H Content-Type: application/json \
-d {
todolist_id: 790,
startnoearlier_than: { date: 2026-04-11, time: 08:00 },
endnolater_than: { date: 2026-04-11, time: 14:00 }
}

取消任务

bash
curl -X POST https://public-api.tidy.com/api/v2/jobs/456/cancel \
-H Authorization: Bearer $TIDYAPITOKEN

重新安排任务

bash
curl -X POST https://public-api.tidy.com/api/v2/jobs/456/reschedule \
-H Authorization: Bearer $TIDYAPITOKEN \
-H Content-Type: application/json \
-d {
servicetypekey: regularcleaning.twoandahalf_hours,
startnoearlier_than: { date: 2026-04-15, time: 09:00 },
endnolater_than: { date: 2026-04-15, time: 17:00 },
preferredstartdatetime: { date: 2026-04-15, time: 11:00 }
}

必需: servicetypekey,startnoearlierthan,endnolaterthan。

可选: preferredstartdatetime,todolist_id。



工单(维护/问题报告)

工单代表与物业相关的维护问题或维修请求。

工单状态

已报告 → 进行中 → 已完成

工单紧急程度

低,正常,高,紧急

列出工单

bash
curl -s https://public-api.tidy.com/api/v2/tasks \
-H Authorization: Bearer $TIDYAPITOKEN

按地址、状态、类型或紧急程度筛选(逗号分隔)

curl -s https://public-api.tidy.com/api/v2/tasks?address_id=123&urgency=high \ -H Authorization: Bearer $TIDYAPITOKEN

按礼宾分配筛选

curl -s https://public-api.tidy.com/api/v2/tasks?assignedtoconcierge=true \ -H Authorization: Bearer $TIDYAPITOKEN

获取单个工单

bash
curl -s https://public-api.tidy.com/api/v2/tasks/789 \
-H Authorization: Bearer $TIDYAPITOKEN

响应字段:id,addressid,title,description,reportertype,reportername,type,status,urgency,duedate,assignedtoconcierge,archivedat,createdat。

创建工单

bash
curl -X POST https://public-api.tidy.com/api/v2/tasks \
-H Authorization: Bearer $TIDYAPITOKEN \
-H Content-Type: application/json \
-d {
address_id: 123,
title: 主卧室窗户破损,
description: 左侧窗玻璃破裂,漏风。需要更换玻璃。,
type: repair,
urgency: high,
due_date:

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 cleaning-and-maintenance-1775930821 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 cleaning-and-maintenance-1775930821 技能

通过命令行安装

skillhub install cleaning-and-maintenance-1775930821

下载

⬇ 下载 cleaning-and-maintenance v1.0.0(免费)

文件大小: 3.33 KB | 发布时间: 2026-4-12 09:28

v1.0.0 最新 2026-4-12 09:28
Initial release of the Cleaning & Maintenance skill for TIDY integration.

- Schedule and manage cleaning appointments (jobs) including create, update, cancel, and reschedule features
- Create and track maintenance/repair tasks with support for urgency levels and concierge assignment
- Add and manage service professionals on the TIDY platform
- Check booking availability before scheduling services
- Work with to-do lists (cleaning checklists) linked to jobs
- Requires TIDY API token authentication for all actions

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部