How to: Create a Property
For information about prerequisites, see Integrate with Facilities.
To create your first Property, call the Create Property endpoint and pass a request similar to the following:
{
"propertyName": "Example Property",
"propertyCode": "REGNO:784734",
"propertyOwnerId": "RG Estate",
"area": 120000,
"location": {
"address": {
"buildingNumber": "187",
"addressLine1": "9th Cross Road",
"addressLine2": "Fairhope, AL 36532",
"addressLine3": "Mount Vernon",
"apartmentNumber": "A1",
"floor": "F1",
"zipCode": "32159",
"city": "Henrico",
"state": "VA",
"country": {
"code": "BMU",
"name": "Bermuda"
}
},
"geoLocation": {
"lat": "45",
"long": "90"
}
}
}
To know more about the members used for creating a Property, check out the Facility API documentation.
Updated 4 months ago