Easily Integrate with BuildingLink Data

Start using BuildingLink data to build your own custom integrations.

OData support will give you all the flexibility you need to get the data you are looking for.

It's Simple

GET https://api.buildinglink.com/Calendar/PropEmp/v1/Events?$top=20&$orderby=StartDate asc&$expand=Category&$filter=date(StartDate) gt 2019-06-18

Response

{
  "value": [
    {
      "Id": 1,
      "Subject": "Evening Yoga Class",
      "Description": "Level 1 with Instructor...",
      "StartDate": "2019-06-21T00:00:00Z",
      "EndDate": "2019-06-21T01:00:00Z",
      "CategoryId": 1,
      "IsAllDayEntry": false,
      "Category": {
        "Id": 1,
        "Name": "Building Events",
        ...
      }
	  ...
    },
    {
      "Id": 2,
      "Subject": "Free Museum Entry Day",
      "Description": "Entry to all local museums is free today...",
      "StartDate": "2019-06-23T14:00:00Z",
      "EndDate": "2019-06-23T22:00:00Z",
      "CategoryId": 2,
      "IsAllDayEntry": false,
      "Category": {
        "Id": 2,
        "Name": "Culture",
        ...
      }
	  ...
    }
  ]
}