Lease Events
Lease Move In
Section titled “Lease Move In”Event Type: lease.move_in
This event is published when a renter should be marked as moved in.
Attributes
Section titled “Attributes”move_in_dateString/ISODate The lease start datepms_identifierString The identifier for this renter in PMScommunity_pms_identifierString The identifier for the community in PMSchargesList A list of charges to apply at move incharge_typeString Indicates whether this is a one time or monthly chargepms_identifierString The charge code to use with this chargestart_dateString/ISODate The first date the charge should be appliedend_dateString/ISODate The last date the charge should be appliedamountInteger How much the charge is for in cents.descriptionString 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
Section titled “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
Section titled “Attributes”move_in_dateString/ISODate The lease start datepms_identifierString The identifier for this renter in PMScommunity_pms_identifierString The identifier for the community in PMS
Example Event
Section titled “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"  }}