CLI
Configuration
Configure the Pipelime CLI with API keys and preferences.
CLI Configuration
Authentication
Pipelime auth login --api-key ki_your_key_hereCredentials 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
| Variable | Description |
|---|---|
Pipelime_API_KEY | API key for authentication |
Pipelime_BASE_URL | API base URL |
Pipelime_ORG_ID | Default organization ID |
Pipelime_FORMAT | Output 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