v1
Double column
API
CLI
JS Client

Preview Blueprints /

List preview blueprints

Lists all preview blueprints for a project

Required permission

Project > PreviewBlueprints > General > Read

Path parameters

    • projectId

      string required
      ID of the project

Query parameters

    • per_page

      integer
      The number of results to display per request. Maximum of 100 results per page.
    • page

      integer
      The page number to access.
    • cursor

      string
      The cursor returned from the previous page of results, used to request the next page.

Response body

  • {object}
    Response object.
    • data

      {object} required
      Result data.
      • pipelines

        [array] required
        An array of preview blueprints in this project.
        • {object}
          A preview blueprint.
          • name

            string required
            Name of the template.
            min length
            3
            max length
            100
            pattern
            ^[a-zA-Z0-9]+((-|\s)[a-zA-Z0-9]+)*$
          • description

            string
            Description of the template.
            max length
            200
            pattern
            ^[a-zA-Z0-9.,?\s\\/'"()[\];`%^&*\-_:!]+$
          • apiVersion

            string required
            The version of the Northflank API to run the template against.
            one of
            v1.2
          • options

            {object}
            Options regarding how the template is run.
            • autorun

              boolean
              If true, the template will run automatically whenever a change is made to it.
            • concurrencyPolicy

              string
              Defines the concurrency behaviour of the template with respect to parallel runs.
              one of
              allow, queue, forbid
          • id

            string required
            Identifier for the preview blueprint
          • createdAt

            string
            time of creation
          • updatedAt

            string
            time of update
    • pagination

      {object} required
      Data about the endpoint pagination.
      • hasNextPage

        boolean required
        Is there another page of results available?
      • cursor

        string
        The cursor to access the next page of results.
      • count

        number required
        The number of results returned by this request.
API
CLI
JS Client

GET /v1/projects/{projectId}/preview-blueprints

Example response

200 OK

A list of previewBlueprints that belong to the project.

JSON

{
  "data": {
    "pipelines": [
      {
        "name": "Example Template",
        "description": "This is a sample template.",
        "apiVersion": "v1.2",
        "options": {
          "autorun": false,
          "concurrencyPolicy": "allow"
        },
        "id": "example-workflow"
      }
    ]
  },
  "pagination": {
    "hasNextPage": false,
    "count": 1
  }
}

© 2026 Northflank Ltd. All rights reserved.