Difference between revisions of "DataZoa API FAQ"

From dataZoa Wiki
Jump to: navigation, search
Line 3: Line 3:
  
 
===Where can I see the dataZoa API and its documentation?===
 
===Where can I see the dataZoa API and its documentation?===
<div>
+
<div style="margin-left: 3em;">
 
[[DataZoa_API|Right here!]]
 
[[DataZoa_API|Right here!]]
 
</div>
 
</div>
  
 
===How can I fetch "pretty" data, as show in my tables, instead of raw series?===
 
===How can I fetch "pretty" data, as show in my tables, instead of raw series?===
<div>
+
<div style="margin-left: 3em;">
 
The API is all about managing the raw data.  To get nicely presented data from dataZoa [[Displays|displays]], consider using [[Tables_For_Data_Automation|this great technique]].
 
The API is all about managing the raw data.  To get nicely presented data from dataZoa [[Displays|displays]], consider using [[Tables_For_Data_Automation|this great technique]].
 
</div>
 
</div>
  
 
===How Can I find and download only recently changed series?===
 
===How Can I find and download only recently changed series?===
<div>
+
<div style="margin-left: 3em;">
 
First use the SeriesList() function to identify series of interest.  It fetches series metadata (including date modified) for up to 8000 series at a time. This makes compiling a list of series keys which were last updated within a given date range fast and inexpensive, programmatically speaking.  
 
First use the SeriesList() function to identify series of interest.  It fetches series metadata (including date modified) for up to 8000 series at a time. This makes compiling a list of series keys which were last updated within a given date range fast and inexpensive, programmatically speaking.  
  

Revision as of 08:03, 10 May 2017


Where can I see the dataZoa API and its documentation?

Right here!

How can I fetch "pretty" data, as show in my tables, instead of raw series?

The API is all about managing the raw data. To get nicely presented data from dataZoa displays, consider using this great technique.

How Can I find and download only recently changed series?

First use the SeriesList() function to identify series of interest. It fetches series metadata (including date modified) for up to 8000 series at a time. This makes compiling a list of series keys which were last updated within a given date range fast and inexpensive, programmatically speaking.

Once you have compiled your list of series of interest, use the usual SeriesGet() function to retrieve the series themselves.

This is the way any polling/syncing script should be checking for which series need to be processed; allowing you to only fetch/sync those series of interest.