Skip to main content
Sometimes you need to know when an object you are syncing has been deleted in the external system. Detecting deletes is not a universal switch. It differs significantly between syncs that use checkpoints (fetching only changed data) and syncs that fetch all data on every run. Pick the strategy that matches your sync approach.

Detecting deletes in syncs with checkpoints

When using checkpoints to only fetch changed data since the previous run, Nango has no built-in way to know which records disappeared on the provider side. You must actively tell Nango which IDs have been removed by calling nango.batchDelete() (full reference) inside the sync functions.

When can you use this?

You can use nango.batchDelete() if the external API supports one of the following:
  • A dedicated “recently deleted” endpoint (e.g. GET /entities/deleted?since=...)
  • The ability to filter or sort by a deletion timestamp
  • The ability to filter or sort by last-modified timestamp and records include a flag like is_deleted, archived, etc.
If none of these are available, you cannot detect deletes with a checkpoint-based sync. You’ll either need to switch to a sync that fetches all data or skip deletion detection. Switching to fetching all data should not be done lightly. Make sure you understand the tradeoffs.

Example sync with checkpoint and deletion detection

import { createSync } from 'nango';
import * as z from 'zod';

const AccountSchema = z.object({
  id: z.string(),
  name: z.string()
});

export default createSync({
  description: 'Sync Accounts with checkpoint & handle deletions',
  frequency: 'every 2 hours',
  endpoints: [{ method: 'GET', path: '/accounts', group: 'Accounts' }],
  models: { Account: AccountSchema },
  checkpoint: z.object({
    lastSyncedISO: z.string(),
  }),

  exec: async (nango) => {
    const checkpoint = await nango.getCheckpoint();
    const now = new Date().toISOString();

    // (1) Fetch newly created / updated accounts
    const res = await nango.get({
        endpoint: '/accounts',
        params: { ...(checkpoint && { since: checkpoint.lastSyncedISO }) }
    });
    await nango.batchSave(res.data, 'Account');

    // (2) Fetch deletions since the last run (if this is not the first run)
    if (checkpoint) {
        const deletedRes = await nango.get({
            endpoint: '/accounts/deleted',
            params: { since: checkpoint.lastSyncedISO }
        });

        // (3) Tell Nango which IDs have been deleted in the external system
        const toDelete = deletedRes.data.map((row: any) => ({ id: row.id }));
        if (toDelete.length) {
            await nango.batchDelete(toDelete, 'Account');
        }
    }

    // (4) Save checkpoint for next run
    await nango.saveCheckpoint({ lastSyncedISO: now });
  }
});

Detecting deletes in syncs without checkpoints

Syncs that fetch all records on every run can automatically detect deletions. Nango can therefore detect removals by computing the diff between two consecutive result sets. Enable this behaviour by calling the deleteRecordsFromPreviousExecutions function. (full reference).
deleteRecordsFromPreviousExecutions does not work with checkpoint-based syncs because fetching the data incrementally prevents performing a diff and automatically detecting deletions.

Example sync with deletion detection

import { createSync } from 'nango';
import * as z from 'zod';

const TicketSchema = z.object({
  id: z.string(),
  subject: z.string(),
  status: z.string()
});

export default createSync({
  description: 'Fetch all help-desk tickets',
  frequency: 'every day',
  endpoints: [{ method: 'GET', path: '/tickets', group: 'Tickets' }],
  models: { Ticket: TicketSchema },

  exec: async (nango) => {
    const tickets = await nango.paginate<{ id: string; subject: string; status: string }>({
      endpoint: '/tickets',
      paginate: { type: 'cursor', cursorPathInResponse: 'next', cursorNameInRequest: 'cursor', responsePath: 'tickets' }
    });

    for await (const page of tickets) {
      await nango.batchSave(page, 'Ticket');
    }

    // Delete records that don't exist anymore
    await nango.deleteRecordsFromPreviousExecutions('Ticket');
  }
});

How the algorithm works

  1. During the execution, Nango stores the list of record IDs.
  2. When calling deleteRecordsFromPreviousExecutions, Nango compares the new list with the old one.
  3. Any records missing in the new list are marked as deleted (soft delete). They remain accessible from the Nango cache, but with record._metadata.deleted === true.
Be careful with exception handling when using deleteRecordsFromPreviousExecutionsNango only performs deletion detection (the “diff”) if a sync run completes successfully without any uncaught exceptions.If you’re using deleteRecordsFromPreviousExecutions, exception handling becomes critical:
  • If your sync doesn’t fetch the full dataset, but still call deleteRecordsFromPreviousExecutions (e.g. you catch and swallow an exception), Nango will attempt the diff on an incomplete dataset.
  • This leads to false positives, where valid records are mistakenly considered deleted.
What You Should DoIf a failure prevents full data retrieval, make sure the sync run fails and deleteRecordsFromPreviousExecutions is not being called:
  • Let exceptions bubble up and interrupt the run.
  • If you’re using try/catch, re-throw exceptions that indicate incomplete data.
How to use deleteRecordsFromPreviousExecutions safelyIf some records are incorrectly marked as deleted due to calling deleteRecordsFromPreviousExecutions improperly, you can trigger a full resync (via the UI or API) to restore the correct data state.However, because deleteRecordsFromPreviousExecutions relies on logic in your sync functions, mistakes there can lead to false deletions.We strongly recommend not performing irreversible destructive actions (like hard-deleting records in your system) based solely on deletions reported by Nango. A full resync should always be able to recover from issues.

Troubleshooting deletion detection issues

SymptomLikely cause
Records that still exist in the source API are shown as deleted in Nangosync didn’t save all records (silent failures) before calling deleteRecordsFromPreviousExecutions
You never see deleted recordsCheck if deletion detection is implemented for the sync.
Questions, problems, feedback? Please reach out in the Slack community.