GetItDoneGetItDone Docs
API ReferenceDaily plan

Get the daily board

The credential user's board for a date: both sections (TODO plan + PROGRESS) with their fill-status and entries. Read-only — unlike the in-app board it never creates section rows; a date nobody planned answers empty sections with status NOT_FILLED.

GET
/v1/daily-plan

The credential user's board for a date: both sections (TODO plan + PROGRESS) with their fill-status and entries. Read-only — unlike the in-app board it never creates section rows; a date nobody planned answers empty sections with status NOT_FILLED.

Authorization

bearerAuth
AuthorizationBearer <token>

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

In: header

Query Parameters

date*string

Board date as YYYY-MM-DD (UTC day).

Match^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))$
Formatdate

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/daily-plan?date=2019-08-24"
{  "date": "2019-08-24",  "sections": [    {      "section": "TODO",      "status": "COMPLETED",      "entries": [        {          "id": "string",          "section": "TODO",          "task_id": "string",          "title": "string",          "status": "TODO",          "created_at": "2019-08-24T14:15:22Z"        }      ]    }  ]}