Server.save

Does anyone know why server.save doesn’t return a 1 when trying to save this object?

_data = {“name” : _plotName, “Height”:array(1, 0.0), “TimeStamp”:array(1, getPlotlyTimestamp())};
if (server.save(_data)){server.log(“DataTable saved.”);}

I’m using a free subscription to plot.ly and I store about an hour (roughly 60 samples) of data to send to plot.ly in batches (to get around the 1000 api call / 24hour limit). I was trying to save the current data so that it can persist across agent/device reboots.

https://electricimp.com/docs/api/server/save/
server.save returns 0 on success!

Wow I feel like an idiot. Thanks for the self-esteem boost. Next time I’ll read the manual a little more closely…