Params
| Name | Type | Requireness | Default value | Description |
|---|---|---|---|---|
| property_uid | string | required | none | UID of the property the task belongs to. |
| dt | string | required | none | YYYY-MM-DD date of the task. |
| tm | string | optional | none | HH:MM:SS start time of the task. Defaults to the property's cleaning time when omitted. |
| hr | float | optional | none | Task duration in hours. Defaults to the property's cleaning duration when omitted. |
| cleaner_uid | string | optional | none | UID of the team member (cleaner) to assign. Must be assignable to the property. |
| description | string | optional | none | Free-text task description. |
Description
Create a cleaning task for a property.
This endpoint requires the following scope: tasks
Request sample
{
"property_uid": "e3ddcd1a-0e3e-4649-91be-c59d7b56",
"dt": "2026-07-25",
"tm": "10:00:00",
"hr": 2,
"cleaner_uid": "123234242342342343",
"description": "Deep clean before next check-in"
}
Response sample
{
"data": [
{
"task_uid": "485929487298347",
"team_member_uid": "123234242342342343"|null,
"property_uid": "123123123",
"task_type": <Dictionary: task_type>,
"task_status": <Dictionary: task_status>,
"description": "Getting rid of dust on the Wi-Fi router"|null,
"local_start_dttm": "2019-01-12 06:00:00",
"local_end_dttm": "2019-01-12 08:00:00"
}
],
"meta": {
"page": 1,
"has_next_page": true
}
}