function cdb_list(pInputA)


Summary

This function returns a line-delimited list of the values of the requested key.

Inputs

*optional parameter.

Outputs

(String) – A line-delimited list of the values of the requested key. Note that this list is unsorted.

Additional Requirements

This API call requires internet access in order to list cloud records.

API Version

Examples

local tInputA, tOutputA

#Table name: clients
#Keys: firstName, lastName, age, income

put "firstName" into tInputA["key"]
put "clients" into tInputA["cdbTableName"]
put "cloud" into tInputA["cdbTarget"]

put cdb_list(tInputA) into tOutputA

#Output: John
#        Nathan
#        Erin