Get It Done Logo
Get It Done

Remove an entry from the board

DELETE/v1/daily-plan/entries/{entry_id}

Removes a board entry (the task itself is untouched), mirroring the in-app remove: a parent entry takes its subtasks' entries on the same board with it. An entry from another organization or user answers 404 `resource_not_found`.

Required scopes
tasks:write
Availability
All plans
Quota cost
1 API call
Idempotency
Not applicable

Request

Path parameters

FieldTypeDescription
entry_idrequiredstring

Response 200

Removal acknowledgement.

Fields

FieldTypeDescription
idrequiredstring
deletedrequiredboolean
Raw response schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "deleted": {
      "type": "boolean",
      "const": true
    }
  },
  "required": [
    "id",
    "deleted"
  ],
  "additionalProperties": false,
  "description": "Acknowledgement of a removed board entry."
}

Example request

curl
curl -X DELETE https://app.nowgetitdone.com/v1/daily-plan/entries/id_123 \
  -H "Authorization: Bearer gid_YOUR_API_KEY"

Possible errors