Calyptia pipeline_log API

The pipeline_log API from Calyptia — 2 operation(s) for pipeline_log.

Operations 5

POST /v1/pipelines/{pipelineID}/logs Create Pipeline Log #
GET /v1/pipelines/{pipelineID}/logs Pipeline Logs #
GET /v1/pipeline_logs/{pipelineLogID} Pipeline log #
PATCH /v1/pipeline_logs/{pipelineLogID} Update Pipeline Log #
DELETE /v1/pipeline_logs/{pipelineLogID} Delete Pipeline Log #

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/calyptia-pipeline-log-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

calyptia-pipeline-log-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Calyptia Cloud agent Pipeline Log API
  version: '1.0'
  description: HTTP API service of Calyptia Cloud
  contact:
    name: Calyptia
    email: hello@calyptia.com
    url: https://cloud.calyptia.com
  termsOfService: https://calyptia.com/terms/
servers:
- url: https://cloud-api.calyptia.com
  description: prod
- url: https://cloud-api-dev.calyptia.com
  description: dev
- url: https://cloud-api-staging.calyptia.com
  description: staging
- url: http://localhost:{port}
  description: local
  variables:
    port:
      default: '5000'
tags:
- name: pipeline_log
paths:
  /v1/pipelines/{pipelineID}/logs:
    parameters:
    - name: pipelineID
      schema:
        type: string
        format: uuid
      in: path
      description: Parent pipeline ID.
      required: true
    post:
      operationId: createPipelineLog
      summary: Create Pipeline Log
      description: 'Create a new log within a pipeline.

        The log will be created with the given `logs` blob of text.'
      tags:
      - pipeline_log
      security:
      - user: []
      - project: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePipelineLog'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Created'
    get:
      operationId: pipelineLogs
      summary: Pipeline Logs
      description: Logs from a pipeline with backward pagination.
      tags:
      - pipeline_log
      security:
      - user: []
      - project: []
      parameters:
      - name: last
        schema:
          type: integer
          minimum: 0
        in: query
        description: Limit to the last logs.
      - name: before
        schema:
          type: string
        in: query
        description: Paginate logs before the given cursor.
      - name: status
        schema:
          type: string
          enum:
          - NEW
          - DONE
        in: query
        description: Filter logs by status
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PipelineLogs'
  /v1/pipeline_logs/{pipelineLogID}:
    parameters:
    - name: pipelineLogID
      in: path
      schema:
        type: string
        format: uuid
      required: true
    get:
      tags:
      - pipeline_log
      summary: Pipeline log
      operationId: pipelineLog
      description: Pipeline log by ID.
      security:
      - user: []
      - project: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PipelineLog'
    patch:
      operationId: updatePipelineLog
      summary: Update Pipeline Log
      description: 'Update a log given its ID.

        The log will be updated with the given `logs` blob of text.'
      tags:
      - pipeline_log
      security:
      - user: []
      - project: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdatePipelineLog'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Updated'
    delete:
      operationId: deletePipelineLog
      summary: Delete Pipeline Log
      description: Delete a log given its ID.
      tags:
      - pipeline_log
      security:
      - user: []
      - project: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Deleted'
components:
  schemas:
    PipelineLog:
      type: object
      properties:
        id:
          type: string
          format: uuid
        pipelineID:
          type: string
          format: uuid
        logs:
          type: string
        lines:
          type: integer
          default: 100
        status:
          $ref: '#/components/schemas/PipelineLogStatus'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
      - id
      - pipelineID
      - logs
      - lines
      - status
      - createdAt
      - updatedAt
    CreatePipelineLog:
      type: object
      properties:
        logs:
          type: string
        lines:
          type: integer
          default: 100
      required:
      - logs
    UpdatePipelineLog:
      type: object
      properties:
        logs:
          type:
          - string
          - 'null'
          default: null
        lines:
          type:
          - integer
          - 'null'
          default: null
        status:
          type:
          - string
          - 'null'
          default: null
          enum:
          - NEW
          - DONE
    PipelineLogStatus:
      type: string
      description: 'The status of a pipeline log, if NEW hasn''t been updated from the cluster.

        If DONE, logs have been retrieved from the cluster.

        '
      default: NEW
      enum:
      - NEW
      - DONE
    Updated:
      type: object
      properties:
        updatedAt:
          type: string
          format: date-time
      required:
      - updatedAt
    PipelineLogs:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/PipelineLog'
        endCursor:
          type:
          - string
          - 'null'
          default: null
        count:
          type: number
          format: int32
          minimum: 0
        pollingIntervalMs:
          type: integer
          format: int32
          minimum: 0
          description: Recommended polling interval in milliseconds for agents to poll for new log requests. Calculated server-side based on active agent count. (v3 pipelines only, 0 for legacy pipelines)
      required:
      - items
      - endCursor
      - count
      - pollingIntervalMs
    Deleted:
      type: object
      properties:
        deleted:
          type: boolean
        deletedAt:
          type:
          - string
          - 'null'
          format: date-time
          default: null
      required:
      - deleted
      - deletedAt
    Created:
      type: object
      properties:
        id:
          type: string
          format: uuid
        createdAt:
          type: string
          format: date-time
      required:
      - id
      - createdAt
  securitySchemes:
    user:
      type: http
      scheme: bearer
    project:
      name: X-Project-Token
      type: apiKey
      in: header
    auth0:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://sso.calyptia.com/oauth/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://sso.calyptia.com/authorize
          tokenUrl: https://sso.calyptia.com/oauth/token
          scopes: {}