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

AccessCodes


Create digital access codes for a booking

POST
/bookings/{id}/accesscode

Generates guest access codes on every smart lock configured on the booking's property, valid from the booking's arrival time until the departure time.

Create digital access codes for a booking › path Parameters

id
​string · required

Booking id

Create digital access codes for a booking › Responses

Access codes created. failed_smartlocks lists any locks the provider rejected.

KeysResponse
accessCode
​string · required
​BookingAccessCode[] · required
​SmartLockInfo[] · required
POST/bookings/{id}/accesscode
curl --request POST \ --url /bookings/:id/accesscode
shell
Example Responses
{ "accessCode": "accessCode", "accessCodes": [ { "id": "00000000-0000-0000-0000-000000000000", "booking_id": "00000000-0000-0000-0000-000000000000", "smartlock_id": "00000000-0000-0000-0000-000000000000", "access_code": "access_code", "vendor_code_id": "vendor_code_id", "code_start_datetime": "code_start_datetime", "code_end_datetime": "code_end_datetime", "created_at": "created_at", "updated_at": "updated_at", "deleted_at": "deleted_at", "smartlock": { "id": "00000000-0000-0000-0000-000000000000", "vendor": "vendor", "name": "name", "property_id": "00000000-0000-0000-0000-000000000000", "nuki_smartlock": { "id": "00000000-0000-0000-0000-000000000000", "nuki_smartlock_id": "nuki_smartlock_id" }, "unifi_smartlock": { "floor_id": "floor_id", "door_id": "door_id", "name": "name", "assigned_property": { "property_id": "00000000-0000-0000-0000-000000000000", "property_name": "property_name", "smartlock_record_id": "00000000-0000-0000-0000-000000000000" } }, "lock_state": 0, "battery_level": 0, "battery_charging": true, "offline": true } } ], "failedSmartlocks": [ { "id": "00000000-0000-0000-0000-000000000000", "vendor": "vendor", "name": "name" } ] }
json
application/json

Revoke a digital access code

DELETE
/accesscodes/{id}

Removes the access code from its underlying smart lock and deletes the record.

Revoke a digital access code › path Parameters

id
​string · required

Access code id

Revoke a digital access code › Responses

Access code revoked

No data returned
DELETE/accesscodes/{id}
curl --request DELETE \ --url /accesscodes/:id
shell
Example Responses
No example specified for this content type

Account