Working with JSON - Record Count & Parsing
So now I have been able to get DeserializeJSON JSON data from a google API like this
Let me know if a larger picture of this will help.

From this code
<cfhttp url="https://storage.googleapis.com/storage/v1/b/myabc/o?prefix=products/3D/">
<cfset cfData=DeserializeJSON(cfhttp.FileContent)>
The products parameter changes and will yield different results
I have never worked with JSON data before like this.
Questions:
- What CF code can I write to determine if I have any records from the API?
- What CF code can I write to get a record count of the JSON results?
- What CF code can I write to extract certain fields from the JSON structure?
For example, I need to get the all the results from the id fields in a list.
