Skip to content

fix(integrations): update Todoist connectivity test to api/v1#93

Open
mt-alarcon wants to merge 1 commit into
evolution-foundation:mainfrom
mt-alarcon:fix/todoist-api-endpoint
Open

fix(integrations): update Todoist connectivity test to api/v1#93
mt-alarcon wants to merge 1 commit into
evolution-foundation:mainfrom
mt-alarcon:fix/todoist-api-endpoint

Conversation

@mt-alarcon
Copy link
Copy Markdown

@mt-alarcon mt-alarcon commented May 23, 2026

Problem

The Todoist connectivity test in dashboard/backend/routes/integrations.py hits /rest/v2/projects, which is the deprecated v2 endpoint. Todoist has migrated their REST API to /api/v1/. Requests to /rest/v2/ now return errors, causing the integration health check to always report failure even with a valid token.

Change

# Before
"https://api.todoist.com/rest/v2/projects"

# After
"https://api.todoist.com/api/v1/projects"

One-line fix in routes/integrations.py — no behavior change beyond using the correct endpoint.

Reference

Todoist API v1 docs: https://developer.todoist.com/rest/v1/

Summary by Sourcery

Bug Fixes:

  • Fix Todoist connectivity test failures by switching from the deprecated /rest/v2/projects endpoint to the supported /api/v1/projects endpoint.

The /rest/v2/ endpoint is deprecated and returns errors. Todoist's current
REST API lives at /api/v1/. Update the connectivity test to hit the correct
URL so the integration health check works.
@sourcery-ai
Copy link
Copy Markdown

sourcery-ai Bot commented May 23, 2026

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Updates the Todoist integration health check to call the current /api/v1/projects endpoint instead of the deprecated /rest/v2/projects endpoint, ensuring connectivity tests succeed with valid tokens.

Sequence diagram for updated Todoist connectivity test endpoint

sequenceDiagram
    participant User
    participant Backend
    participant TodoistAPI

    User->>Backend: GET /integrations/todoist/test
    Backend->>TodoistAPI: http.get(api_v1_projects, Authorization Bearer token)
    TodoistAPI-->>Backend: 200 OK or error
    Backend-->>User: JSON health status
Loading

File-Level Changes

Change Details Files
Update Todoist connectivity test to use the non-deprecated API v1 projects endpoint.
  • Replace the Todoist health-check URL path from /rest/v2/projects to /api/v1/projects in the HTTP GET call used by the integration connectivity test
  • Preserve existing request headers, timeout, and error handling logic so behavior is unchanged apart from targeting the correct API endpoint
dashboard/backend/routes/integrations.py

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link
Copy Markdown

@sourcery-ai sourcery-ai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant