Why are some accounts not appearing in the list when using the Pipedream endpoint to manage AI agent auth?

This topic was automatically generated from Slack. You can find the original thread here.

Hi I’m using Pipedream to manage the auth of my ai agents.

I ran into an issue lately. I wanted to list the accounts (accounts that I connected to pipedream). However I was not able to see Google drive in the list and many others. I have tried with multiple accounts but I still cannot see it in the list.

Here is the endpoint I used: https://api.pipedream.com/v1/accounts

Do you have any idea of what could be wrong here ?

credentials_url = "https://api.pipedream.com/v1/accounts"
    credentials_headers = {"Authorization": f"Bearer {access_token}"}
    credentials_params = {"include_credentials": "true"}

    credentials_response = requests.get(
        credentials_url, headers=credentials_headers, params=credentials_params
    )

Returns accounts but not all of them

If you’re using Connect, the URL is: https://api.pipedream.com/v1/{project_id}/accounts/

The one you looked at is for your connected accounts

Hi Andrew, I’m not using connect at the moment. Just wanted to list all connected accounts but most of them are missing from the listing.

I tried again but didn’t figure it out