List sections
documentedReturn all sections (optionally filtered by project).
GET /sectionsSectionsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
Note: This uses Todoist REST API v2. The current base URL is https://api.todoist.com/rest/v2 and the endpoint to list sections for a project is GET /sections with a project_id query parameter (Authorization uses a Bearer token). See Todoist REST API v2 documentation for reference. ([developer.todoist.com](https://developer.todoist.com/rest/v2/?utm_source=openai))
npx -y keychains@latest curl "https://api.todoist.com/rest/v2/sections?project_id={{$project_id}}" \
-X GET \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json"