---
title: "sequenceTemplate.list"
method: POST
path: "/sequenceTemplate.list"
tags: ["Sequence Template"]
---

# sequenceTemplate.list

`POST /sequenceTemplate.list`

Lists reusable sourcing sequence templates visible to the caller. Returns template and cadence metadata only; message subjects and bodies are not exposed.

Archived templates are excluded unless the includeArchived option is true. Use that option when maintaining a complete synchronized catalog.

See the [Pagination and Incremental Synchronization](/docs/pagination-and-incremental-sync) guide for detailed usage examples.

**Requires the [`sourcingRead`](authentication#permissions-sequencetemplatelist) permission.**

## Request body

- SequenceTemplateListRequest
  - `cursor` string — Opaque cursor for the next page of results
  - `syncToken` string — An opaque token representing the last completed synchronization. The final page returns a token for the next incremental synchronization.
  - `limit` integer — The maximum number of templates to return. Defaults to 100 and cannot exceed 100.
  - `includeArchived` boolean — Whether to include archived templates. Defaults to false.

## Response `200`

Responses from the sequenceTemplate.list endpoint

- union
  - SequenceTemplateListSuccessResponse
    - `success` true, required
    - `results` SequenceTemplate[], required
      - `id` string, uuid, required — The unique identifier for the sequence template
      - `title` string, required — The sequence template's title
      - `isArchived` boolean, required — Whether the sequence template is archived
      - `unsubscribeLinkActive` boolean, required — Whether emails sent from the sequence include an unsubscribe link
      - `updatedAt` string, date-time, required — When the returned template metadata last changed
      - `stages` SequenceTemplateStage[], required — The template's stages in sequence order
        - `id` string, uuid, required — The unique identifier for the sequence template stage
        - `type` 'Email' | 'InMail' | 'LinkedInConnection', required
        - `sendAfter` union, required — The delay before this stage is sent
          - object
            - `kind` 'NoDelay', required
          - object
            - `kind` 'AtDateAndTime', required
            - `dateTime` string, date-time, required — The absolute date and time when the stage is sent
            - `timezone` string, required — The IANA timezone used for the scheduled date and time
          - object
            - `kind` 'TimeIntervalElapsed', required
            - `amount` integer, required — The number of delay units to wait after the previous stage
            - `unit` 'day' | 'week' | 'month' | 'quarter' | 'year', required — The unit for the elapsed delay
            - `time` string, required — The local send time in 24-hour HH:mm format
            - `timezone` string, required — The IANA timezone used for the local send time
            - `allowedWeekdays` integer[], required — Allowed send weekdays using ISO numbering, where Monday is 1 and Sunday is 7
    - `nextCursor` string — Cursor for the next page of results, if available
    - `moreDataAvailable` boolean — Whether more data is available beyond this page
    - `syncToken` string — Sync token to use for future incremental syncs. Only present on the last page.
  - ErrorResponse
    - `success` false, required
    - `errors` ErrorDetail[], required
      - `message` string, required
      - `parameter` string

---

[API](https://skmtc.net/ashbyhq/apis/ashby-api.md) · [All operations](https://skmtc.net/ashbyhq/apis/ashby-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ashbyhq/ashby-api/revisions/778b919dc743/schema)
