GetItDoneGetItDone Docs
API ReferenceDaily plan

Set a section's daily status

Sets the fill-status of one section of the credential user's board for a date (creating the section row if the date was never touched — the in-app board creates it on view).

PATCH
/v1/daily-plan

Sets the fill-status of one section of the credential user's board for a date (creating the section row if the date was never touched — the in-app board creates it on view).

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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Which section, and its new status.

Response Body

application/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?date=2019-08-24" \  -H "Content-Type: application/json" \  -d '{    "section": "TODO",    "status": "COMPLETED"  }'
{  "date": "2019-08-24",  "section": "TODO",  "status": "COMPLETED"}