Skip to content

Commit

Permalink
Fix broken docs links (#1910)
Browse files Browse the repository at this point in the history
## Describe your changes

## Issue ticket number and link

## Checklist before requesting a review (skip if just adding/editing
APIs & templates)
- [ ] I added tests, otherwise the reason is: 
- [ ] I added observability, otherwise the reason is:
- [ ] I added analytics, otherwise the reason is:
  • Loading branch information
bastienbeurier authored Apr 2, 2024
1 parent 5d1cb2c commit 487d393
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs-v2/integrate/guides/sync-data-from-an-api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Webhooks with non-2xx responses are retried with exponential backoff.
</Tip>

<Warning>
Before using webhooks in production, verify their origin ([step-by-step guide](/integrate/guides/receive-webhooks-from-nango#verify-webhooks-from-nango)).
Before using webhooks in production, verify their origin ([step-by-step guide](/integrate/guides/advanced/verify-webhooks-from-nango)).
</Warning>

# Fetch the latest data
Expand Down
2 changes: 1 addition & 1 deletion docs-v2/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
},
{
"source": "/guides/webhooks",
"destination": "/integrate/guides/receive-webhooks-from-nango"
"destination": "/understand/concepts/webhooks"
},
{
"source": "/guides/advanced-auth",
Expand Down
2 changes: 1 addition & 1 deletion docs-v2/reference/api/sync/records-get.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ openapi: 'GET /sync/records'

## Receive webhooks on data updates

Receive webhooks from Nango when new records are available ([step-by-step guide](/integrate/guides/receive-webhooks-from-nango)).
Receive webhooks from Nango when new records are available ([step-by-step guide](/integrate/guides/sync-data-from-an-api#listen-for-webhooks-from-nango)).

## Keeping track of where you left off

Expand Down
2 changes: 1 addition & 1 deletion docs-v2/reference/api/sync/records-list.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ openapi: 'GET /records'

## Receive webhooks on data updates

Receive webhooks from Nango when new records are available ([step-by-step guide](/integrate/guides/receive-webhooks-from-nango)).
Receive webhooks from Nango when new records are available ([step-by-step guide](/integrate/guides/sync-data-from-an-api#listen-for-webhooks-from-nango)).

## Response

Expand Down
2 changes: 1 addition & 1 deletion docs-v2/understand/concepts/actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The outcomes of action executions, whether errors or successes, are directly rel

### Unified modeling

Actions support inputs and outputs that adhere to [unified models](/understand/concepts/api-unification), streamlining the integration process across different external APIs.
Actions support inputs and outputs that adhere to [unified models](/customize/guides/advanced/unify-apis-and-models), streamlining the integration process across different external APIs.

**Action vs. the proxy**

Expand Down
2 changes: 1 addition & 1 deletion docs-v2/understand/concepts/syncs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Unlike actions, the syncs default function doesn't take any input parameters or

# API unification

Syncs can have records that conform to a [unified model](/understand/concepts/api-unification), regardless of the specific external API they originate from. This unification simplifies your integration code, enabling you to handle data from various sources in a consistent manner, thus reducing complexity and the potential for errors.
Syncs can have records that conform to a [unified model](/customize/guides/advanced/unify-apis-and-models), regardless of the specific external API they originate from. This unification simplifies your integration code, enabling you to handle data from various sources in a consistent manner, thus reducing complexity and the potential for errors.

# Getting started with syncs

Expand Down
2 changes: 1 addition & 1 deletion packages/webapp/src/pages/EnvironmentSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ export const EnvironmentSettings: React.FC = () => {
<div className="flex text-black text-sm">
{`Be notified when new data is available from Nango (cf. `}
<a
href="https://docs.nango.dev/integrate/guides/receive-webhooks-from-nango"
href="https://docs.nango.dev/integrate/guides/sync-data-from-an-api#listen-for-webhooks-from-nango"
target="_blank"
rel="noreferrer"
className="text-text-blue ml-1"
Expand Down

0 comments on commit 487d393

Please sign in to comment.