Skip to main content

getPipeline

client.memoryIngestion.getPipeline(id: string): Promise<IngestionPipeline>

Retrieves a specific ingestion pipeline by its unique identifier.

Returns the full pipeline configuration including its processor chain, trigger conditions, and execution history.

Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the pipeline to retrieve

Returns

Promise<IngestionPipeline> — A promise that resolves to the ingestion pipeline details

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.memoryIngestion.getPipeline('id');
console.log(result);