> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fuseai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# The workspace's saved campaign templates

> Lists the saved campaign templates you can see - your own plus those shared by your team's visibility settings - newest first, with the schedule settings and the full step sequence each one snapshots. Pass a template's `id` as `templateId` when creating a campaign to copy its steps and channels. This endpoint returns at most the 100 most recent templates; `pagination.total` tells you whether there are more. Rate limit: 30 requests/minute and 1,000/day per token owner, shared by every campaign, scheduled-send, campaign-template and knowledge-hub endpoint.

Errors:
- `429` `RATE_LIMITED` — More than 30 campaign requests in a minute, or 1,000 in a day, for this token owner (the bucket is shared by every /business/campaigns, /business/scheduled-sends, /business/campaign-templates and /business/knowledge-hubs call).
- `500` `UNEXPECTED_ERROR` — An unhandled failure; the detail stays in our logs and is never returned.

Requires one of the following token scopes: campaigns.



## OpenAPI

````yaml /openapi.json get /business/campaign-templates
openapi: 3.1.0
info:
  title: Fuse Business API
  version: 1.0.0
  description: >-
    External API for lists, campaigns, prospect search and contacts.
    Authenticate with your API token as HTTP Basic. All paths are under /api/v1.
servers:
  - url: https://api.tryfuse.ai/api/v1
    description: Production
security:
  - basicAuth: []
tags:
  - name: Lists
  - name: Custom columns
  - name: Smart columns
  - name: Exports
  - name: Campaigns
  - name: Knowledge hubs
  - name: Analytics
  - name: Website intent
  - name: Account
  - name: Prospect search
  - name: Campaign steps
  - name: Scheduled sends
  - name: Campaign templates
  - name: Agents
  - name: Research
  - name: Company search
  - name: Saved searches
  - name: Folders
  - name: Contacts
paths:
  /business/campaign-templates:
    get:
      tags:
        - Campaign templates
      summary: The workspace's saved campaign templates
      description: >-
        Lists the saved campaign templates you can see - your own plus those
        shared by your team's visibility settings - newest first, with the
        schedule settings and the full step sequence each one snapshots. Pass a
        template's `id` as `templateId` when creating a campaign to copy its
        steps and channels. This endpoint returns at most the 100 most recent
        templates; `pagination.total` tells you whether there are more. Rate
        limit: 30 requests/minute and 1,000/day per token owner, shared by every
        campaign, scheduled-send, campaign-template and knowledge-hub endpoint.


        Errors:

        - `429` `RATE_LIMITED` — More than 30 campaign requests in a minute, or
        1,000 in a day, for this token owner (the bucket is shared by every
        /business/campaigns, /business/scheduled-sends,
        /business/campaign-templates and /business/knowledge-hubs call).

        - `500` `UNEXPECTED_ERROR` — An unhandled failure; the detail stays in
        our logs and is never returned.


        Requires one of the following token scopes: campaigns.
      operationId: listCampaignTemplates
      responses:
        '200':
          description: Success
          headers:
            RateLimit-Limit:
              schema:
                type: integer
              description: Requests permitted in the current window.
            RateLimit-Remaining:
              schema:
                type: integer
              description: Requests remaining in the current window.
            RateLimit-Reset:
              schema:
                type: integer
              description: Seconds until the current window resets.
          content:
            application/json:
              schema:
                type: object
                properties:
                  templates:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type:
                            - string
                            - 'null'
                        name:
                          type:
                            - string
                            - 'null'
                        type:
                          type: string
                          enum:
                            - ai-generated
                            - manual
                          description: >-
                            The campaignType a campaign built from this template
                            will carry.
                        timezone:
                          type:
                            - string
                            - 'null'
                        emailDays:
                          type: array
                          items:
                            type: string
                        emailStartHour:
                          type:
                            - string
                            - 'null'
                          description: >-
                            Start of the daily sending window, local to
                            `timezone`.
                        emailEndHour:
                          type:
                            - string
                            - 'null'
                        listIds:
                          type: array
                          items:
                            type: string
                          description: Source lists captured when the template was saved.
                        generalTopic:
                          type:
                            - string
                            - 'null'
                          description: >-
                            The overall brief captured from an AI campaign; null
                            for a manual one.
                        createdAt:
                          type:
                            - string
                            - 'null'
                          format: date-time
                        steps:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type:
                                  - string
                                  - 'null'
                              sequenceNumber:
                                type:
                                  - integer
                                  - 'null'
                                description: 0-based slot in the snapshotted sequence.
                              channel:
                                type:
                                  - string
                                  - 'null'
                              daysBetween:
                                type:
                                  - integer
                                  - 'null'
                              topic:
                                type:
                                  - string
                                  - 'null'
                                description: >-
                                  Empty string on a manual step that never had a
                                  topic.
                              subject:
                                type:
                                  - string
                                  - 'null'
                              body:
                                type:
                                  - string
                                  - 'null'
                            required:
                              - id
                              - sequenceNumber
                              - channel
                              - daysBetween
                              - topic
                              - subject
                              - body
                          description: >-
                            The snapshotted sequence. A snapshot stores fewer
                            fields than a live step - no step type, title or cc.
                      required:
                        - id
                        - name
                        - type
                        - timezone
                        - emailDays
                        - emailStartHour
                        - emailEndHour
                        - listIds
                        - generalTopic
                        - createdAt
                        - steps
                  pagination:
                    type: object
                    properties:
                      page:
                        type: integer
                        description: 1-based page number this response covers.
                      pageSize:
                        type: integer
                        description: Rows requested per page.
                      total:
                        type: integer
                        description: Total rows matching the query.
                      totalPages:
                        type: integer
                        description: Total pages at this page size.
                    required:
                      - page
                      - pageSize
                      - total
                      - totalPages
                required:
                  - templates
                  - pagination
              example:
                templates:
                  - id: 6a8dcc00f12e15c575d68c57
                    name: SaaS cold intro
                    type: manual
                    timezone: UTC
                    emailDays:
                      - Monday
                      - Tuesday
                      - Wednesday
                      - Thursday
                      - Friday
                    emailStartHour: '09:00'
                    emailEndHour: '17:00'
                    listIds:
                      - 6a1edba88936e0fe1b20287c
                    generalTopic: null
                    createdAt: '2026-08-25T17:08:16.290Z'
                    steps:
                      - id: 6a8dcc00f12e15c575d68c55
                        sequenceNumber: 0
                        channel: email
                        daysBetween: 0
                        topic: ''
                        subject: Quick question about {Contact Company}
                        body: <p>Hi {Contact First Name}, ...</p>
                      - id: 6a8dcc00f12e15c575d68c56
                        sequenceNumber: 1
                        channel: email
                        daysBetween: 2
                        topic: ''
                        subject: Following up
                        body: <p>Circling back on my note.</p>
                pagination:
                  page: 1
                  pageSize: 100
                  total: 42
                  totalPages: 1
        '400':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - basicAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            param:
              type:
                - string
                - 'null'
            doc_url:
              type:
                - string
                - 'null'
            request_id:
              type:
                - string
                - 'null'
          required:
            - code
            - message
      required:
        - error
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        Your API token (`af_…`) as the Basic-auth username, with an empty
        password.

````