Get It Done Logo
Get It Done

Get the daily board

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.

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

Request

Query parameters

FieldTypeDescription
daterequiredstring (date)Board date as YYYY-MM-DD (UTC day).e.g. 2026-07-23

Response 200

The date's board.

Fields

FieldTypeDescription
daterequiredstring (date)The board date (UTC day).
sectionsrequiredobject[]Always both sections: TODO then PROGRESS.
Raw response schema
{
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "format": "date",
      "pattern": "^(?:(?:\\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])))$",
      "description": "The board date (UTC day)."
    },
    "sections": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DailyPlanSection"
      },
      "description": "Always both sections: TODO then PROGRESS."
    }
  },
  "required": [
    "date",
    "sections"
  ],
  "additionalProperties": false,
  "description": "The credential user's daily board for one date in the credential's organization."
}

Example request

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

Possible errors