PipelimePipelime Docs
Getting Started

CLI Setup

Install and configure the Pipelime command-line interface.

CLI Setup

The Pipelime CLI provides terminal-based access to all platform features.

Installation

npm install -g @Pipelime/cli

Authentication

Authenticate with your API key:

Pipelime auth login --api-key ki_your_key_here

The CLI stores credentials in ~/.Pipelime/config.json.

Configuration

Config File

The CLI reads configuration from ~/.Pipelime/config.json:

{
  "apiKey": "ki_your_key_here",
  "baseUrl": "https://app.Pipelime.io",
  "defaultOrganization": "org_123",
  "outputFormat": "table"
}

Environment Variables

You can also configure via environment variables:

VariableDescription
Pipelime_API_KEYAPI key for authentication
Pipelime_BASE_URLAPI base URL (default: https://app.Pipelime.io)
Pipelime_ORG_IDDefault organization ID
Pipelime_FORMATOutput format: table, json, quiet

Output Formats

The CLI supports three output formats:

# Table format (default, human-readable)
Pipelime campaign list --format table

# JSON format (machine-readable)
Pipelime campaign list --format json

# Quiet format (IDs only, for scripting)
Pipelime campaign list --format quiet

Verify Installation

Pipelime --version
Pipelime whoami

On this page