PipelimePipelime Docs
CLI

Configuration

Configure the Pipelime CLI with API keys and preferences.

CLI Configuration

Authentication

Pipelime auth login --api-key ki_your_key_here

Credentials are stored in ~/.Pipelime/config.json.

Config File

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

Environment Variables

VariableDescription
Pipelime_API_KEYAPI key for authentication
Pipelime_BASE_URLAPI base URL
Pipelime_ORG_IDDefault organization ID
Pipelime_FORMATOutput format: table, json, quiet

Environment variables take precedence over the config file.

Multiple Profiles

Switch between different API keys or organizations:

# Set up a profile
Pipelime auth login --api-key ki_prod_key --profile production
Pipelime auth login --api-key ki_dev_key --profile development

# Use a specific profile
Pipelime campaign list --profile production

On this page