GetItDoneGetItDone Docs
API ReferenceDaily plan

Move an entry between sections

Moves a board entry to the other section of the same date, mirroring the in-app move: subtask entries of a parent move along, a task already present in the target section answers 400 `validation_failed`, and the move RE-CREATES the entry — the returned entry carries a NEW id. Sections are the only movement the board models (no positional reorder exists).

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

Moves a board entry to the other section of the same date, mirroring the in-app move: subtask entries of a parent move along, a task already present in the target section answers 400 validation_failed, and the move RE-CREATES the entry — the returned entry carries a NEW id. Sections are the only movement the board models (no positional reorder exists).

Authorization

bearerAuth
AuthorizationBearer <token>

A gid_ API key (Settings → API keys) or an OAuth 2.1 access token.

In: header

Path Parameters

entry_id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

The target section.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X PATCH "https://example.com/v1/daily-plan/entries/string" \  -H "Content-Type: application/json" \  -d '{    "section": "TODO"  }'
{  "id": "string",  "section": "TODO",  "task_id": "string",  "title": "string",  "status": "TODO",  "created_at": "2019-08-24T14:15:22Z"}