Delete Action

Base URL

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.

{
  "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.

{
  "status": true
}

When the id parameter parameter is not sent:

{
  "status": false,
  "message": "id parameter not found"
}

When sending wrong ID:

{
  "status": false,
  "message": "id not exists"
}