Params

NameTypeRequirenessDefault valueDescription
property_uidstringrequirednoneUID of the property the task belongs to.
dtstringrequirednoneYYYY-MM-DD date of the task.
tmstringoptionalnoneHH:MM:SS start time of the task. Defaults to the property's cleaning time when omitted.
hrfloatoptionalnoneTask duration in hours. Defaults to the property's cleaning duration when omitted.
cleaner_uidstringoptionalnoneUID of the team member (cleaner) to assign. Must be assignable to the property.
descriptionstringoptionalnoneFree-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
    }
}