Subscription script failing on REST API update
I've got a Thing Template called 'NetworkSection' with three properties: 'StartPoint' a reference to another Thing, 'StartCity' a string, and 'Locations', an infotable with one column of Locations.
I've also written a subscription for NetworkSection on its own 'StartPoint' property, which updates the 'StartCity' and first row of the 'Locations' infotable', based on the properties of the new StartPoint.
me.Locations.getRow(0).Loc = Things[me.StartPoint].Loc
me.StartCity = Things[me.StartPoint].City
When I change the StartPoint of a NetworkSection from within composer, both the StartCity and Locations properties update as expected. However, if I do the same through the REST API, I'm finding that the StartCity updates, but record in the Locations infotable does not. Any ideas why that might be?

