Airbyte · Arazzo Workflow

Airbyte Reset a Connection and Re-Sync

Version 1.0.0

Trigger a reset job to clear destination data, poll it to completion, then branch into a fresh sync when the reset succeeds.

1 workflow 1 source API 1 provider
View Spec View on GitHub Data IntegrationETLELTOpen-SourceData PipelineConnectorsDataArazzoWorkflows

Provider

airbyte

Workflows

reset-and-resync
Reset a connection's data, wait for completion, then re-sync on success.
Triggers a reset job, polls it to a terminal state, and on success triggers a fresh sync.
3 steps inputs: connectionId outputs: resetJobId, resetStatus, resyncJobId
1
triggerReset
Trigger a reset job to clear the connection's previously synced data.
2
pollReset
Poll the reset job. While it is still pending or running, loop back and read it again. On success branch into a fresh sync; on failure end.
3
triggerResync
Trigger a fresh sync to repopulate the destination now that the reset has succeeded.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airbyte Reset a Connection and Re-Sync
  summary: Trigger a reset job to clear destination data, poll it to completion, then branch into a fresh sync when the reset succeeds.
  description: >-
    The clean-slate recovery flow. It triggers a reset job for a connection
    (clearing previously synced data in the destination) and polls that job
    until it reaches a terminal state. When the reset succeeds it triggers a
    fresh sync so the destination is repopulated; when the reset fails it ends
    without re-syncing. Every step inlines its request so the flow can be read
    and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: publicJobsApi
  url: ../openapi/airbyte-public-jobs-api-openapi.yml
  type: openapi
workflows:
- workflowId: reset-and-resync
  summary: Reset a connection's data, wait for completion, then re-sync on success.
  description: >-
    Triggers a reset job, polls it to a terminal state, and on success triggers
    a fresh sync.
  inputs:
    type: object
    required:
    - connectionId
    properties:
      connectionId:
        type: string
        description: The UUID of the connection to reset and re-sync.
  steps:
  - stepId: triggerReset
    description: Trigger a reset job to clear the connection's previously synced data.
    operationId: createJob
    requestBody:
      contentType: application/json
      payload:
        connectionId: $inputs.connectionId
        jobType: reset
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      jobId: $response.body#/jobId
      status: $response.body#/status
  - stepId: pollReset
    description: >-
      Poll the reset job. While it is still pending or running, loop back and
      read it again. On success branch into a fresh sync; on failure end.
    operationId: getJob
    parameters:
    - name: jobId
      in: path
      value: $steps.triggerReset.outputs.jobId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
    onSuccess:
    - name: stillRunning
      type: goto
      stepId: pollReset
      criteria:
      - context: $response.body
        condition: $.status == 'running' || $.status == 'pending' || $.status == 'incomplete'
        type: jsonpath
    - name: resetSucceeded
      type: goto
      stepId: triggerResync
      criteria:
      - context: $response.body
        condition: $.status == 'succeeded'
        type: jsonpath
    - name: resetFailed
      type: end
      criteria:
      - context: $response.body
        condition: $.status == 'failed' || $.status == 'cancelled'
        type: jsonpath
  - stepId: triggerResync
    description: >-
      Trigger a fresh sync to repopulate the destination now that the reset has
      succeeded.
    operationId: createJob
    requestBody:
      contentType: application/json
      payload:
        connectionId: $inputs.connectionId
        jobType: sync
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      jobId: $response.body#/jobId
      status: $response.body#/status
  outputs:
    resetJobId: $steps.triggerReset.outputs.jobId
    resetStatus: $steps.pollReset.outputs.status
    resyncJobId: $steps.triggerResync.outputs.jobId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/airbyte-reset-and-resync-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.