Lookup Dataset

Lookup Dataset

Used by the Table Lookup node to select a lookup dataset.

GET /api/lookup_dataset

Response Content

The response will be a JSON array of objects, with each object consisting of the following information:

Key Type Description
id Integer The ID of the particular dataset.
name String The name of the dataset.

Examples

curl 'http://localhost/jarvis-agent/n2fe/api/lookup_dataset'  -H 'Cookie: N2FE_CGISESSID=4876c530f3d7252330a95ea51007f252'
[
   {
      "name" : "Table Lookup",
      "id" : "26"
   },
   {
      "id" : "3",
      "name" : "Rural Lookup"
   }
]