Delete Action ============= Base URL .. code-block:: markdown https://script.google.com/.../exec?action=delete Parameters ---------- id ~~ The ID of the line to be delete. :: https://script.google.com/.../exec?action=delete&id=123456789 All parameters can be sent via POST. .. code:: json { "id": "123456789" } Returns ------- ``status`` : Boolean - True if it is successful. ``message``: String - If status is false, it is added instead of data and contains an error message. .. code:: json { "status": true } When the id parameter parameter is not sent: .. code:: json { "status": false, "message": "id parameter not found" } When sending wrong ID: .. code:: json { "status": false, "message": "id not exists" }