Return open commitments sorted by recency.
cURL
curl --request GET \ --url https://api.example.com/api/dashboard/commitments \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": 123, "topic": "<string>", "content": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "days_ago": 123, "status": "<string>", "project": "<string>", "scope": "<string>", "due_date": "2023-12-25" } ], "total": 123 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Filter by scope (personal or work)
personal
work
Filter by project name
Max items to return
1 <= x <= 100
Successful Response
Generic list response for dashboard endpoints.
A single commitment in the dashboard.
Show child attributes