Vellum AI subpackage_workspaceSecrets API

The subpackage_workspaceSecrets API from Vellum AI — 1 operation(s) for subpackage_workspacesecrets.

Operations 2

GET /v1/workspace-secrets/{id} Retrieve #
PATCH /v1/workspace-secrets/{id} Partial Update #

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/vellum-subpackage-workspacesecrets-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

vellum-subpackage-workspacesecrets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Client SDK Subpackage Workspace Secrets API
  version: 1.0.0
servers:
- url: https://predict.vellum.ai
- url: https://api.vellum.ai
- url: https://documents.vellum.ai
tags:
- name: subpackage_workspaceSecrets
paths:
  /v1/workspace-secrets/{id}:
    get:
      operationId: retrieve
      summary: Retrieve
      description: Used to retrieve a Workspace Secret given its ID or name.
      tags:
      - subpackage_workspaceSecrets
      parameters:
      - name: id
        in: path
        description: Either the Workspace Secret's ID or its unique name
        required: true
        schema:
          type: string
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: X-API-Version
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspaceSecretRead'
    patch:
      operationId: partial-update
      summary: Partial Update
      description: Used to update a Workspace Secret given its ID or name.
      tags:
      - subpackage_workspaceSecrets
      parameters:
      - name: id
        in: path
        description: Either the Workspace Secret's ID or its unique name
        required: true
        schema:
          type: string
      - name: X-API-KEY
        in: header
        required: true
        schema:
          type: string
      - name: X-API-Version
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspaceSecretRead'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedWorkspaceSecretUpdateRequest'
components:
  schemas:
    SecretTypeEnum:
      type: string
      enum:
      - USER_DEFINED
      - HMAC
      - INTERNAL_API_KEY
      - EXTERNALLY_PROVISIONED
      description: '* `USER_DEFINED` - User Defined

        * `HMAC` - Hmac

        * `INTERNAL_API_KEY` - Internal Api Key

        * `EXTERNALLY_PROVISIONED` - Externally Provisioned'
      title: SecretTypeEnum
    WorkspaceSecretRead:
      type: object
      properties:
        id:
          type: string
          format: uuid
        modified:
          type: string
          format: date-time
        name:
          type: string
        label:
          type: string
        secret_type:
          $ref: '#/components/schemas/SecretTypeEnum'
      required:
      - id
      - modified
      - name
      - label
      - secret_type
      title: WorkspaceSecretRead
    PatchedWorkspaceSecretUpdateRequest:
      type: object
      properties:
        label:
          type: string
        value:
          type: string
      title: PatchedWorkspaceSecretUpdateRequest
  securitySchemes:
    default:
      type: apiKey
      in: header
      name: X-API-KEY