Hi everyone,
Great news! We just updated our API to include the ability to update our Location column.
To add or update a location in this column, include the longitude and latitude, as well as optionally the text to be displayed. These values are JSON data types, and should look something like this:
JSON.stringify({
“lat” : “40.6892494”
“lng” : “-74.0445004”
“address” : “Giza Pyramid Complex”
});
Or like this in JSON:
“{“lat” : “40.6892494”, “lng” : “-74.0445004”, “address” : “Giza Pyramid Complex”}”
To get the full update and details about this column, check out the Location column section in our API documentation here.
-Helen