---
title: "Get Campaign Sequence"
method: GET
path: "/campaigns/{id}/sequence"
tags: ["Campaigns"]
---

# Get Campaign Sequence

`GET /campaigns/{id}/sequence`

Retrieves the sequence (nodes and edges) for a campaign.
This endpoint provides detailed access to the visual sequence builder structure.

The sequence defines the automation flow including:
- Start and stop nodes
- Email, LinkedIn action nodes
- Wait/delay nodes
- Conditional logic (If/Switch nodes)
- HTTP API request nodes
- Task and note nodes

## Path parameters

- `id` string, uuid, required

## Response `200`

Campaign sequence

- CampaignSequenceResponse
  - `success` boolean
  - `request_id` string
  - `data` object
    - `campaign_id` string, uuid
    - `nodes` SequenceNode[]
      - `id` string, uuid, required — Unique identifier for the node
      - `type` 'startNode' | 'stopNode' | 'emailNode' | 'waitNode' | 'ifNode' | 'switchNode' | 'httpApiRequestNode' | 'linkedinProfileVisitNode' | 'linkedinConnectionNode' | 'linkedinConnectionWithMessageNode' | 'linkedinMessageNode' | 'linkedinInmailNode' | 'linkedinLikeRecentPostNode' | 'linkedinWaitUntilConnectedNode' | 'moveToAnotherCampaignNode' | 'taskNode' | 'noteNode', required — The type of node
      - `data` object, required — Node-specific data (varies by node type)
      - `position` NodePosition, required
        - `x` number, required
        - `y` number, required
      - `style` object
        - `width` integer
        - `height` integer
        - `minWidth` integer
        - `minHeight` integer
    - `edges` SequenceEdge[]
      - `id` string, required — Unique identifier for the edge
      - `source` string, uuid, required — ID of the source node
      - `sourceHandle` string — Handle ID on the source node (e.g., 'true', 'false', or path ID)
      - `target` string, uuid, required — ID of the target node
      - `type` 'buttonedge'

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - Access denied
- `404` — Not Found - Resource does not exist

---

[API](https://skmtc.dev/supersend/apis/supersend-api.md) · [All operations](https://skmtc.dev/supersend/apis/supersend-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/supersend/supersend-api/revisions/f0cbeaa12643/schema)
