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
| Field | Type | Description |
|---|---|---|
entry_idrequired | string |
Response 200
Removal acknowledgement.
Fields
| Field | Type | Description |
|---|---|---|
idrequired | string | |
deletedrequired | boolean |
▸ ▾ 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
- 401
missing_credentialsMissing credentials - 401
invalid_api_keyInvalid API key - 401
invalid_tokenInvalid access token - 403
insufficient_scopeInsufficient scope - 403
feature_not_enabledFeature not enabled on this plan - 404
resource_not_foundResource not found - 429
rate_limitedRate limit exceeded - 429
quota_exhaustedPlan quota exhausted - 500
internal_errorInternal server error