List Action =========== It is used when you want to list the data in the table. Base URL -------- :: https://script.google.com/.../exec?action=list Parameters ---------- limit ~~~~~ **Not Required / Optionel** How many data will be fetched. :: https://script.google.com/.../exec?action=list https://script.google.com/.../exec?action=list&limit=3 All parameters can be sent via POST. .. code:: json { "limit": 3 } Returns ------- ``status`` : Boolean - True if it is successful. ``data`` : Array[] - Result. .. code:: json { "status": true, "data": [["Hello", "World"], ["Hi", "World"]] }