Version 2
- Changed request parameter 'propertyIds' node to 'propertyId' and now accept only one property at a time. This is because there are some picklist items that are provided that are unique to one property and not others.
- Made 'propertyId' parameter required because some picklist items returned are specific to property.
-Changed the way we return event results to be in attribute form instead of nodes. For example in JSON:
Previously:
"EventResults": { "EventResult": [ { "name": "Cancelled", "Id": 57024 },
Updated:
"eventResults": { "eventResult": [ { "@attributes": { "name": "Cancelled", "id": "57024" } },