Kasify
ENES
  • Documentation
  • Documentación
  • Developers
  • API Reference
Information
AccessCodes
    Create digital access codes for a bookingpostRevoke a digital access codedelete
Account
    Get the user's accountgetUpdate the user's accountput
Auth
    Register the authenticated userpost
Bookings
    Get the current booking for a propertygetList bookings for a propertygetCreate a booking for a propertypostList bookings across all properties the caller can accessgetGet a booking by idgetUpdate a bookingpatch
Calendar
    List calendar events for a propertygetList upcoming calendar events across accessible propertiesget
Checkin
    Get the guest check-in snapshot for a bookinggetRegister a guest on a bookingpost
Geo
    Search countriesgetSearch provincesgetSearch citiesget
Guests
    List guests registered under the caller's accountget
Integrations
    List all integrations configured for the accountgetList integrations of a specific typegetCreate an integration of a specific typepostUpdate an integrationputDelete an integrationdeleteList Nuki smart locks reachable through an integrationgetList Unifi doors reachable through an integrationget
Properties
    List properties accessible to the callergetCreate a propertypostGet a property by idgetUpdate a propertyputDelete a propertydeleteUpload a cover image for a propertypostRemove the cover image for a propertydelete
PropertyMembers
    List invitations for a propertygetCreate a crew invitation for a propertypostList crew members for a propertygetRemove a crew member from a propertydeleteUpdate a crew member's access levelpatchRevoke an invitationdeleteAccept a crew invitationpost
SmartLocks
    List smart locks for a property with live statusgetAdd a smart lock to a propertypostRemove a smart lock from a propertydelete
Tasks
    List tasksgetCreate a taskpostGet a task by idgetDelete a taskdeleteUpdate a taskpatchStart a taskpostComplete a taskpostList tasks for a propertygetGet a task by public token (no auth)get
Timeline
    Upcoming timeline grouped by daygetPaginated activity feedget
Users
    List every user (admin only)get
Schemas
Kasify API
Kasify API

Calendar


List calendar events for a property

GET
/properties/{id}/calendar

Returns bookings, cleaning tasks, and other calendar events for the property. Contractors see only events tied to tasks assigned to them.

List calendar events for a property › path Parameters

id
​string · required

Property id

List calendar events for a property › query Parameters

page
​string

Zero-based page index (default 0)

size
​string

Page size (max 100)

List calendar events for a property › Responses

Paginated calendar events for the property

CalendarResponse
​CalendarEvent[] · required
page
​integer | null
size
​integer | null
total
​integer | null
GET/properties/{id}/calendar
curl --request GET \ --url /properties/:id/calendar
shell
Example Responses
{ "events": [ { "id": "00000000-0000-0000-0000-000000000000", "propertyId": "00000000-0000-0000-0000-000000000000", "from": "2024-08-25", "to": "2024-08-25", "type": "booking", "createdAt": "2024-08-25", "updatedAt": "2024-08-25", "booking": { "channelId": "channelId" }, "task": { "id": "00000000-0000-0000-0000-000000000000", "status": "pending", "assignedTo": "00000000-0000-0000-0000-000000000000", "assignedToName": "assignedToName" } } ], "page": 0, "size": 0, "total": 0 }
json
application/json

List upcoming calendar events across accessible properties

GET
/calendar

Returns upcoming events from every property the caller can access. For contractor properties, only events tied to the caller's assigned tasks are included.

List upcoming calendar events across accessible properties › query Parameters

page
​string

Zero-based page index (default 0)

size
​string

Page size (max 100)

List upcoming calendar events across accessible properties › Responses

Paginated upcoming calendar events

CalendarResponse
​CalendarEvent[] · required
page
​integer | null
size
​integer | null
total
​integer | null
GET/calendar
curl --request GET \ --url /calendar
shell
Example Responses
{ "events": [ { "id": "00000000-0000-0000-0000-000000000000", "propertyId": "00000000-0000-0000-0000-000000000000", "from": "2024-08-25", "to": "2024-08-25", "type": "booking", "createdAt": "2024-08-25", "updatedAt": "2024-08-25", "booking": { "channelId": "channelId" }, "task": { "id": "00000000-0000-0000-0000-000000000000", "status": "pending", "assignedTo": "00000000-0000-0000-0000-000000000000", "assignedToName": "assignedToName" } } ], "page": 0, "size": 0, "total": 0 }
json
application/json

BookingsCheckin