Lease Events
Lease Move In
Event Type: lease.move_in
This event is published when a renter should be marked as moved in.
Attributes
move_in_date
String/ISODate The lease start datepms_identifier
String The identifier for this renter in PMScommunity_pms_identifier
String The identifier for the community in PMScharges
List A list of charges to apply at move incharge_type
String Indicates whether this is a one time or monthly chargepms_identifier
String The charge code to use with this chargestart_date
String/ISODate The first date the charge should be appliedend_date
String/ISODate The last date the charge should be appliedamount
Integer How much the charge is for in cents.description
String A summary of the charge
Example Event
{ "id": "3eb29a92-e480-40ee-9a9f-61fff5e3f3d5", "event": "lease.move_in", "timestamp": "2023-03-11T14:23:56.010+00:00", "data": { "move_in_date": "2023-03-11", "pms_identifier": "t0000000", "community_pms_identifier": "123", "charges": [ { "charge_type": "Monthly", "pms_identifier": "rent", "start_date": "2023-03-11", "end_date": "2024-03-10", "amount": 250000, "description": "Rent" }, { "charge_type": "Monthly", "pms_identifier": "pet", "start_date": "2023-03-11", "end_date": "2024-03-10", "amount": 5000, "description": "Dog Rent" } ] }}
Lease Move In Canceled
Event Type: lease.move_in_canceled
This event is published when a renter’s move in should be canceled/reversed. This may occur if an update needs to be made to the lease or if the renter has not actually moved in at the property.
Attributes
move_in_date
String/ISODate The lease start datepms_identifier
String The identifier for this renter in PMScommunity_pms_identifier
String The identifier for the community in PMS
Example Event
{ "id": "3eb29a92-e480-40ee-9a9f-61fff5e3f3d5", "event": "lease.move_in_canceled", "timestamp": "2023-03-11T14:23:56.010+00:00", "data": { "move_in_date": "2023-03-11", "pms_identifier": "t0000000", "community_pms_identifier": "123" }}