---
title: "Get syncs for integration"
method: GET
path: "/v3/teams/{team_id}/integrations/{integration_id}/syncs"
tags: ["v3", "Syncs"]
---

# Get syncs for integration

`GET /v3/teams/{team_id}/integrations/{integration_id}/syncs`

## Path parameters

- `team_id` union, required
  - string, uuid
  - string
- `integration_id` union, required
  - string, uuid
  - string

## Query parameters

- `limit` integer
- `offset` integer
- `desc` boolean

## Response `200`

Success

- CursorPageDagRunSchema
  - `limit` integer, required — Page limit
  - `offset` integer, required — Page offset
  - `orderedBy` string — Attribute that the items are ordered by
  - `ascending` boolean, required — Whether items are in ascending order
  - `data` DagRunSchema[] — List of items
    - `dag_name` string, required — Name of the DAG
    - `run_id` string, required — Unique ID for this DAG run
    - `created_at` string, date-time — Timestamp when created
    - `updated_at` string, date-time — Timestamp when updated
    - `src_integration_id` union, required — Source integration UUID
      - string, uuid
      - string
    - `dst_integration_id` union, required — Destination integration UUID
      - string, uuid
      - string
    - `status` 'STARTED' | 'SUCCESS' | 'FAILED'
    - `details` DagRunDetails
      - `temp_db_file` string, nullable — Temporary DB file path. Only used in duckdb runs.
      - `prior_meltano_state` object, nullable — Meltano state before running.
      - `post_meltano_state` object, nullable — Meltano state after running.
      - `airflow_merge` boolean — Whether the run is using airflow dag to merge.
  - `metadata` object, nullable — Optional additional metadata

## Other responses

- `404` — Integration not found
- `422` — Validation Error
- `500` — Server exception

---

[API](https://skmtc.dev/definite/apis/defapi.md) · [All operations](https://skmtc.dev/definite/apis/defapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/definite/defapi/revisions/3943d8deb3be/schema)
