Seqera Labs pipeline-secrets API

Pipeline secrets in a user or workspace context

Operations 6

GET /pipeline-secrets List pipeline secrets #
POST /pipeline-secrets Create pipeline secret #
GET /pipeline-secrets/validate Validate secret name #
DELETE /pipeline-secrets/{secretId} Delete secret #
GET /pipeline-secrets/{secretId} Describe pipeline secret #
PUT /pipeline-secrets/{secretId} Update secret #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/seqera-labs-pipeline-secrets-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

seqera-labs-pipeline-secrets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: info@seqera.io
    url: https://seqera.io
  description: Seqera Platform services API
  title: Seqera actions Pipeline Secrets API
  version: 1.181.0
servers:
- url: https://api.cloud.seqera.io
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- description: Pipeline secrets in a user or workspace context
  name: pipeline-secrets
paths:
  /pipeline-secrets:
    get:
      description: Lists all available pipeline secrets in a user context. Append `?workspaceId` to list secrets in a workspace context.
      operationId: ListPipelineSecrets
      parameters:
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListPipelineSecretsResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: List pipeline secrets
      tags:
      - pipeline-secrets
    post:
      description: Creates a new pipeline secret in the user context. Append `?workspaceId` to create the secret in a workspace context.
      operationId: CreatePipelineSecret
      parameters:
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePipelineSecretRequest'
        description: Pipeline secret create request
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatePipelineSecretResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Create pipeline secret
      tags:
      - pipeline-secrets
  /pipeline-secrets/validate:
    get:
      description: Confirms the validity of the given pipeline secret name in a user context. Append `?name=<your_secret_name>`. Append `?workspaceId` to validate the name in a workspace context.
      operationId: ValidatePipelineSecretName
      parameters:
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      - description: Secret name to validate
        in: query
        name: name
        schema:
          type: string
      responses:
        '204':
          description: OK - No content
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Duplicate element
      security:
      - BearerAuth: []
      summary: Validate secret name
      tags:
      - pipeline-secrets
  /pipeline-secrets/{secretId}:
    delete:
      description: Deletes the pipeline secret identified by the given `secretId`.
      operationId: DeletePipelineSecret
      parameters:
      - description: Secret numeric identifier
        in: path
        name: secretId
        required: true
        schema:
          format: int64
          type: integer
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      responses:
        '204':
          description: OK - No content
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Delete secret
      tags:
      - pipeline-secrets
    get:
      description: Retrieves the details of the pipeline secret identified by the given `secretId`.
      operationId: DescribePipelineSecret
      parameters:
      - description: Secret numeric identifier
        in: path
        name: secretId
        required: true
        schema:
          format: int64
          type: integer
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DescribePipelineSecretResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Describe pipeline secret
      tags:
      - pipeline-secrets
    put:
      description: Updates the pipeline secret identified by the given `secretId`.
      operationId: UpdatePipelineSecret
      parameters:
      - description: Secret numeric identifier
        in: path
        name: secretId
        required: true
        schema:
          format: int64
          type: integer
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdatePipelineSecretRequest'
        description: Secret update request
        required: true
      responses:
        '204':
          description: OK - No content
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Update secret
      tags:
      - pipeline-secrets
components:
  schemas:
    DescribePipelineSecretResponse:
      properties:
        pipelineSecret:
          $ref: '#/components/schemas/PipelineSecret'
      type: object
    CreatePipelineSecretRequest:
      properties:
        name:
          type: string
        value:
          type: string
      type: object
    ListPipelineSecretsResponse:
      properties:
        pipelineSecrets:
          items:
            $ref: '#/components/schemas/PipelineSecret'
          type: array
        totalSize:
          format: int64
          type: integer
      type: object
    UpdatePipelineSecretRequest:
      properties:
        value:
          type: string
      type: object
    PipelineSecret:
      properties:
        dateCreated:
          format: date-time
          readOnly: true
          type: string
        id:
          format: int64
          type:
          - integer
          - 'null'
        lastUpdated:
          format: date-time
          readOnly: true
          type: string
        lastUsed:
          format: date-time
          readOnly: true
          type: string
        name:
          maxLength: 100
          pattern: ^[a-zA-Z_](?:[0-9A-Za-z]+|(_)(?!\1)){1,49}$
          type: string
      required:
      - name
      type: object
    CreatePipelineSecretResponse:
      properties:
        secretId:
          format: int64
          type: integer
      type: object
    ErrorResponse:
      properties:
        message:
          type: string
      required:
      - message
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: jwt
      scheme: bearer
      type: http