Calyptia pipeline_port API
The pipeline_port API from Calyptia — 2 operation(s) for pipeline_port.
The pipeline_port API from Calyptia — 2 operation(s) for pipeline_port.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/calyptia-pipeline-port-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Calyptia Cloud agent Pipeline Port 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_port
paths:
/v1/aggregator_pipelines/{pipelineID}/ports:
parameters:
- schema:
type: string
format: uuid
name: pipelineID
in: path
required: true
post:
tags:
- pipeline_port
summary: Create pipeline port
operationId: createPipelinePort
description: 'Create port within a pipeline.
Ports can automatically be parsed from a config file, but this action allows you to programatically add more.'
security:
- user: []
- project: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreatePipelinePort'
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/CreatedPipelinePort'
get:
tags:
- pipeline_port
summary: Pipeline ports
operationId: pipelinePorts
description: Ports from a pipeline.
security:
- user: []
- project: []
parameters:
- schema:
type: integer
minimum: 0
in: query
name: last
description: Last ports.
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/PipelinePort'
/v1/pipeline_ports/{portID}:
parameters:
- schema:
type: string
format: uuid
name: portID
in: path
required: true
get:
tags:
- pipeline_port
summary: Pipeline port
operationId: pipelinePort
description: Port by ID.
security:
- user: []
- project: []
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PipelinePort'
patch:
tags:
- pipeline_port
summary: Update pipeline port
operationId: updatePipelinePort
description: Update port by its ID.
security:
- user: []
- project: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdatePipelinePort'
responses:
'204':
description: No Content
delete:
tags:
- pipeline_port
summary: Delete pipeline port
operationId: deletePipelinePort
description: Delete port by its ID.
security:
- user: []
- project: []
responses:
'204':
description: No Content
components:
schemas:
PipelinePortKind:
type: string
description: The kind/type of the service associated to this port.
default: LoadBalancer
enum:
- LoadBalancer
- ClusterIP
- NodePort
CreatePipelinePort:
description: Create pipeline port request body.
type: object
properties:
protocol:
type: string
example: tcp
frontendPort:
type: integer
format: int32
minimum: 0
description: 'FrontendPort is equivalent to Docker''s host port and Kubernetes'' service port.
It should be unique within the pipeline.'
backendPort:
type: integer
format: int32
minimum: 0
description: BackendPort is equivalent to Docker's container port and Kubernetes' target port (pod).
endpoint:
type: string
kind:
deprecated: true
$ref: '#/components/schemas/PipelinePortKind'
required:
- protocol
- frontendPort
- backendPort
- endpoint
CreatedPipelinePort:
type: object
description: Created pipeline port response body.
properties:
id:
type: string
format: uuid
kind:
type:
- string
- 'null'
default: null
pluginID:
type:
- string
- 'null'
default: null
example: forward.0
pluginName:
type:
- string
- 'null'
default: null
example: forward
pluginAlias:
type:
- string
- 'null'
default: null
example: myforwardinput
createdAt:
type: string
format: date-time
required:
- id
- pluginID
- pluginName
- pluginAlias
- createdAt
UpdatePipelinePort:
description: Update pipeline port request body.
type: object
properties:
protocol:
type:
- string
- 'null'
example: tcp
default: null
frontendPort:
type:
- integer
- 'null'
format: int32
default: null
description: 'FrontendPort is equivalent to Docker''s host port and Kubernetes'' service port.
It should be unique within the pipeline.'
backendPort:
type:
- integer
- 'null'
format: int32
default: null
description: BackendPort is equivalent to Docker's container port and Kubernetes' target port (pod).
endpoint:
type:
- string
- 'null'
default: null
kind:
deprecated: true
type:
- string
- 'null'
description: The kind/type of the service associated to this port.
default: null
enum:
- LoadBalancer
- ClusterIP
- NodePort
PipelinePort:
type: object
description: Pipeline port model.
properties:
id:
type: string
format: uuid
protocol:
type: string
example: tcp
kind:
$ref: '#/components/schemas/PipelinePortKind'
frontendPort:
type: integer
format: int32
minimum: 0
description: 'FrontendPort is equivalent to Docker''s host port and Kubernetes'' service port.
It should be unique within the pipeline.'
backendPort:
type: integer
format: int32
minimum: 0
description: BackendPort is equivalent to Docker's container port and Kubernetes' target port (pod).
endpoint:
type: string
pluginID:
type:
- string
- 'null'
default: null
example: forward.0
pluginName:
type:
- string
- 'null'
default: null
example: forward
pluginAlias:
type:
- string
- 'null'
default: null
example: myforwardinput
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
required:
- id
- protocol
- kind
- frontendPort
- backendPort
- endpoint
- pluginID
- pluginName
- pluginAlias
- createdAt
- updatedAt
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: {}