Metabolon Sample Sets API

The SampleSets API from Metabolon — 2 operation(s) for samplesets.

Operations 2

POST /api/v1/admin/samplesets/delete/{projectId}/{sampleSetId} Deletes a project and all portal-scoped data for it, then notifies downstream services via PortalProjectEvent. Use query parameter force=true for maintenance: always run delete (ma #
POST /api/v2/admin/samplesets/delete/{projectId}/{sampleSetId} Deletes a project and all portal-scoped data for it, then notifies downstream services via PortalProjectEvent. Use query parameter force=true for maintenance: always run delete (ma #

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/metabolon-samplesets-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

metabolon-samplesets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PortalApi Sample Sets API
  version: '1.0'
servers:
- url: https://portal-api.prod.metabolon.com
tags:
- name: SampleSets
paths:
  /api/v1/admin/samplesets/delete/{projectId}/{sampleSetId}:
    post:
      tags:
      - SampleSets
      summary: 'Deletes a project and all portal-scoped data for it, then notifies downstream services via PortalProjectEvent.

        Use query parameter force=true for maintenance: always run delete (may no-op), always publish the delete event, and return 200 even when no project row exists.'
      operationId: SampleSets_DeleteProject
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
          format: guid
        x-position: 1
      - name: sampleSetId
        in: path
        required: true
        schema:
          type: string
          format: guid
        x-position: 2
      - name: force
        in: query
        schema:
          type: boolean
          default: false
        x-position: 3
      responses:
        '200':
          description: ''
        '404':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
  /api/v2/admin/samplesets/delete/{projectId}/{sampleSetId}:
    post:
      tags:
      - SampleSets
      summary: 'Deletes a project and all portal-scoped data for it, then notifies downstream services via PortalProjectEvent.

        Use query parameter force=true for maintenance: always run delete (may no-op), always publish the delete event, and return 200 even when no project row exists.'
      operationId: SampleSets_DeleteProject2
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
          format: guid
        x-position: 1
      - name: sampleSetId
        in: path
        required: true
        schema:
          type: string
          format: guid
        x-position: 2
      - name: force
        in: query
        schema:
          type: boolean
          default: false
        x-position: 3
      responses:
        '200':
          description: ''
        '404':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    ProblemDetails:
      type: object
      additionalProperties: {}
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
x-generator: NSwag v14.6.2.0 (NJsonSchema v11.5.2.0 (Newtonsoft.Json v13.0.0.0))