Back | Public Strata API/lot
This is how to get all lots per plan number:
https://strata
-<<REGION>>.urbanise.com/integrations/api/lot/client/<<CID>>/planNo/<<PLAN_NUMBER>>
Note that if no paging is specified the system will attempt to return all lots, however for very large plans (more than 100 lots) you may wish to specify a page size to avoid timeouts. This is is done as follows:
https://strata
-<<REGION>>.urbanise.com/integrations/api/lot/client/<<CID>>/planNo/<<PLAN_NUMBER>>?page=1&size=20
Alternatively you can get details for a specific lot only:
https://strata
-<<REGION>>.urbanise.com/integrations/api/lot/client/<<CID>>/planNo/<<PLAN_NUMBER>>/lotNo/<<lot>>
The <<REGION>> is determined by the location of the application you want to send the request to.
Regions include: AU (Australia & Asia), MENA (Middle East & Caribbean) & SA (South Africa)
Example: https://strata-au.urbanise.com (for Australia)
This is your "Client ID".
The "Plan Number" of the property you're requesting data for.
A negative value indicates the debt. For example, "-2811.87" means the lot has an arrears balance of 2,811.87.
The following must be passed in the request header.
Accept: application/json
Authorization: Bearer <<token>>
Note the authorization token must be obtained from Urbanise.
Below is an example of a request.
https://strata-mena.urbanise.com/integrations/api/lot/client/100/planNo/WCB/lotNo/2/list
Accept: application/json
Authorization: Bearer cf290305-c688-44c6-b248-a3352b19c519
[
{
"lotNo": "9",
"lotUnitNo": "901",
"lotStAddress": "1 Macquarie Street",
"lotSuburb": "Sydney",
"lotState": "New South Wales",
"lotPostCode": "2000",
"lotCountry": "Australia",
"lotEnt1": 1,
"lotEnt2": 1,
"lotType": "Residential",
"lotDebtorLevel": "",
"lotLevyBalance": -5914.72,
"addresses": [
{
"type": "Tenant",
"addressType": "Address",
"firstName": "",
"lastName": "",
"nameOnTitle": "",
"address": "1 Macadamia Street",
"location": "Mango Hill",
"state": "Queensland",
"postCode": "4509",
"country": "Australia",
"emails": [
"gemuruci@pay-mon.com"
],
"phones": [
{
"id": 686105,
"type": "Mobile 1",
"number": "0414244224",
"countryCode": "+61",
"areaCode": "7",
"preferred": false
}
],
"addressUseFors": [],
"emailUseFors": {}
},
{
"type": "",
"addressType": "Postal Address",
"firstName": "",
"lastName": "",
"nameOnTitle": "",
"address": "1 Macadamia Street",
"location": "Mango Hill",
"state": "Queensland",
"postCode": "4509",
"country": "Australia",
"emails": [
"gemuruci@pay-mon.com"
],
"phones": [],
"addressUseFors": [],
"emailUseFors": {}
},
{
"type": "Lot Owner",
"addressType": "Address",
"firstName": "",
"lastName": "",
"nameOnTitle": "Meghan and Dillon Logan",
"address": "Unit 9/Town Hall House, 465 Kent Street",
"location": "Sydney",
"state": "NSW",
"postCode": "2000",
"country": "Australia",
"emails": [
"meghantest@urbanise.com",
"meghanlogan91@test.com"
],
"phones": [
{
"id": 1219294,
"type": "Mobile 1",
"number": "37745454",
"countryCode": "+61",
"areaCode": "04",
"preferred": true
}
],
"addressUseFors": [],
"emailUseFors": {}
},
{
"type": "",
"addressType": "Postal Address",
"firstName": "",
"lastName": "",
"nameOnTitle": "",
"address": "Unit 9/Town Hall House, 465 Kent Street",
"location": "Sydney",
"state": "NSW",
"postCode": "2000",
"country": "Australia",
"emails": [
"meghantest@urbanise.com",
"meghanlogan91@test.com"
],
"phones": [],
"addressUseFors": [
"Levy",
"Correspondence"
],
"emailUseFors": {}
},
{
"type": "",
"addressType": "Relative",
"firstName": "John",
"lastName": "",
"nameOnTitle": "",
"address": "1 Main Street",
"location": "Springfield Central",
"state": "Queensland",
"postCode": "4300",
"country": "Australia",
"emails": [
""
],
"phones": [
{
"id": 1393477,
"type": "Home 1",
"number": "32342345",
"countryCode": "+61",
"areaCode": "07",
"preferred": false
}
],
"addressUseFors": [],
"emailUseFors": {}
}
],
"lotArrearsBalance": -2811.87
}
],