Read Action =========== It is used when trying to access a row. Base URL -------- .. code-block:: https://script.google.com/.../exec?action=read Parameters ---------- id ~~ **Require** | The ID of the line to be read. .. code-block:: https://script.google.com/.../exec?action=read&id=123456789 asJSON ~~~~~~ **Optional** | You have a named table take the result as JSON. .. code-block:: https://script.google.com/.../exec?action=read&id=123456789&asJSON=true All parameters can be sent via POST. .. code:: json { "id": "123456789", "asJSON": true } Returns ------- ``status`` : Boolean - True if it is successful. ``data`` : Array - Data found. ``message``: String - If status is false, it is added instead of data and contains an error message. .. tabs:: .. code-tab:: json Success { "status": true, "data": ["Hello", "World"] } .. code-tab:: json When the id parameter parameter is not sent { "status": false, "message": "id parameter not found" } .. code-tab:: json When sending wrong ID { "status": false, "message": "id not exists" }