Hello everyone, I'm new on the forum and despite my efforts on reading several post I haven't understand how to get the location of a path object. I'm able to get a path object, its _id property (and acknowledge that left and top properties are always 0). According to the API documentation I should use something like JSON.parse(myPath.get("path")) and I'm expect to get an array containing the list of points of my drawing but I'm stuck with an log("API SD Processing doorId : " + path._id + "..."); --> Display : "API SD Processing doorId : -MElVB6XxTCEz8Gb3N4o..." var pointArray = JSON.parse(path.get("path")); --> TypeError: myPath.get is not a function var pointArray = JSON.parse(path._path); --> SyntaxError: Unexpected token u in JSON at position 0 In a first time I draw a line and would like to know the middle, and later move it (if it's possible to change the point's coordinates of course). PS : Sorry for gramaticals mistakes unfortunately french people are not know for their language skills.