Skip to main content
GET
/
v2
/
analytics
/
tasks
/
calendar
Get calendar data for a specific week (navigable)
curl --request GET \
  --url https://api.example.com/v2/analytics/tasks/calendar \
  --header 'Authorization: Bearer <token>'
{
  "calendar_data": [
    {
      "date": "2023-12-25",
      "open_count": 1,
      "due_count": 1,
      "payment_promises_count": 0,
      "invoices_due_amount": 0,
      "invoices_due_customers": 0
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

week_start
string<date> | null

Start of the week (YYYY-MM-DD). Defaults to current week Monday.

assignee_ids
string[] | null

Filter by specific assignee IDs.

Response

Successful Response

calendar_data
CalendarDayData · object[]
required