Venterra Realty

🚧

Experimental Feature

The References API is currently an experimental feature. Therefore, the API and this documentation is subject to change. If you have any questions, please email Engrain Support.

Introduction

References for Venterra are indicated by the key property being set to venterra-realty.

Asset Reference

Asset references for Venterra are matched to a property's id value, which is provided to Engrain by Venterra or gathered from https://online.venterraliving.com/External/ThirtyLines.

The following cURL request will only list Venterra asset references for which the API Key has access to.

curl 'https://api.unitmap.com/v1/assets/references?key=venterra-realty' \
  -H 'API-key: API_KEY_GOES_HERE' \
  -H 'Experimental-Flags: references'
{
  "id": "62",
   "asset_id": "8006",
   "key": "venterra-realty",// Indicates the asset reference is for Venterra
   "value": "TX4RB",// The matched Venterra `id` value
   "created_at": "2021-06-22T22:58:35+00:00",
   "updated_at": "2021-12-09T15:17:14+00:00"
},

πŸ“˜

For more detail on this API request, see https://api.unitmap.com/v1/openapi#tag/assetsreferences

Unit Reference

Unit references for Venterra are matched to a unitID value, which is provided to Engrain by Venterra or gathered from https://online.venterraliving.com/External/ThirtyLines.

The following cURL request will only list Venterra unit references for which the API Key has access to.

curl 'https://api.unitmap.com/v1/units/references?key=venterra-realty' \
  -H 'API-key: API_KEY_GOES_HERE' \
  -H 'Experimental-Flags: references'
{
  "group_id": "11",
  "asset_id": "1508",
  "unit_id": "319505",
  "key": "venterra-realty",// Indicates the unit reference is for Venterra
  "value": "TX4IL003152", // The matched Venterra `unitID` value
  "created_at": "2021-06-25T21:51:34+00:00",
  "updated_at": "2021-06-25T21:51:34+00:00"
 },

πŸ“˜

For more detail on this API request, see https://api.unitmap.com/v1/openapi#tag/unitsreferences


What’s Next