Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
176 changes: 0 additions & 176 deletions docs-v2/pages/connected-accounts/api.mdx

This file was deleted.

6 changes: 0 additions & 6 deletions docs-v2/pages/rest-api/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,6 @@ The ID of the custom [OAuth app](/connect/quickstart#create-a-pipedream-oauth-cl

---

`external_user_id` **string** (_optional_)

[The external user ID](/connect/api/#external-users) in your system that you want to retrieve accounts for.

---

`include_credentials` **boolean** (_optional_)

Pass `include_credentials=true` as a query-string parameter to include the account credentials in the response
Expand Down
4 changes: 4 additions & 0 deletions docs-v2/vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,10 @@
{
"source": "/docs/workflows/networking",
"destination": "/docs/databases#connecting-to-restricted-databases"
},
{
"source": "/docs/connected-accounts/api",
"destination": "/docs/connect/api#accounts"
}
Comment on lines +280 to 284
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Codebase verification

Redirect path verified and remaining references found

The destination path /docs/connect/api#accounts exists in docs-v2/pages/connect/api.mdx, and the content includes a comprehensive API reference with an "Accounts" section. However, there are two remaining references to the old path that need to be updated:

  • docs-v2/pages/rest-api/index.mdx
  • docs-v2/pages/connected-accounts/index.mdx
🔗 Analysis chain

Verify the destination path exists.

The redirect looks good, but let's ensure the destination path /docs/connect/api#accounts exists and contains the relevant content from the deleted documentation file.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the existence of the destination path and related files

# Check if the destination file exists (without the #accounts anchor)
fd -t f "api.mdx" -p "docs-v2/pages/connect/"

# Look for any remaining references to the old path
rg -i "connected-accounts/api" --type=mdx

Length of output: 143


Script:

#!/bin/bash
# Check if the destination file exists and look for the 'accounts' section
rg -l "accounts" docs-v2/pages/connect/api.mdx

# Look for any remaining references to connected-accounts, without file type restriction
rg -i "connected-accounts/api"

# Check the content of the API documentation to verify the accounts section
cat docs-v2/pages/connect/api.mdx

Length of output: 64090

]
}
Loading