Property Management

Integration ProviderDevicePin
ButterflyMX
igloohome

Don't see the integration provider or resource you want? Let us know and we will build it out ASAP!


Device: property_management-device

A device is used to manage access points in a property management system.

{
  "type": {
    "title": "Type",
    "type": "string",
    "enum": [
      "Lock",
      "Keypad",
      "Bridge",
      "Fob",
    ]
  },
  "name": {
    "title": "Name",
    "type": "string"
  },
  "battery_level": {
    "title": "Battery Level",
    "type": "number"
  },
  "paired_at": {
    "title": "Paired At",
    "type": "string",
    "format": "date-time"
  },
  "home_id": {
    "items": {
      "type": "string"
    },
    "title": "Associated Home/Property IDs",
    "type": "array"
  },
  "linked_devices": {
    "items": {
      "properties": {
        "type": {
          "title": "Linked Device Type",
          "type": "string",
          "enum": [
            "Lock",
            "Keypad",
            "Bridge",
            "Fob",
          ]
        },
        "device_id": {
          "title": "Linked Device ID",
          "type": "string"
        }
      },
      "type": "object"
    },
    "title": "Linked Devices",
    "type": "array"
  },
}
{
  "type": "Lock",
  "name": "Front Door Lock",
  "battery_level": 85.5,
  "paired_at": "2000-01-01 00:00:00",
  "home_id": ["home456", "property789"],
  "linked_devices": [
    {
      "type": "Keypad",
      "device_id": "keypad101"
    },
    {
      "type": "Bridge",
      "device_id": "bridge202"
    }
  ]
}

Management Pin: property_management-pin

A management pin manages access control information for a property.

{
  "device_id": {
    "title": "Device ID",
    "type": "string",
    "description": "The unique identifier for the device associated with this PIN."
  },
  "permanent": {
    "title": "Is Permanent",
    "type": "boolean"
  },
  "access_name": {
    "title": "Access Point Name",
    "type": "string"
  },
  "variance": {
    "title": "Variance",
    "type": "number"
  },
  "start_date": {
    "title": "Start Date",
    "type": "string",
    "format": "date-time"
  },
  "end_date": {
    "title": "End Date",
    "type": "string",
    "format": "date-time"
  },
  "pin": {
    "title": "Access Point PIN",
    "type": "string"
  },
  "qr_code": {
    "title": "Access Point QR Code URI",
    "type": "string",
    "format": "uri"
  },
}
{
  "device_id": "12345",
  "permanent": false,
  "access_name": "Main Entrance",
  "variance": 0.5,
  "start_date": "2000-01-01T00:00:00",
  "end_date": "2000-01-02T00:00:00",
  "pin": "1234",
  "qr_code": "https://developers.endgrate.com/qr/dev123"
}