Clari (Source)
Introduction
The Clari source connector lets you connect to the Clari API using an API token. This connector is currently in development: authentication can be validated, but data extraction and streams are not yet available.
Setup
Prerequisites
- A Clari account with access to the Forecasting API.
- A Clari API token.
- A Forecast ID for a forecast you can access.
Get your API token
Generate or obtain an API token in Clari (per your organization’s Clari admin/security process). You’ll use this token as a Bearer token for API requests.
Find your Forecast ID
You must provide a forecast_id corresponding to a forecast in Clari Forecasting. The connector validates credentials by calling:
GET https://app.clari.com/api/v4/forecasting/forecasts/{forecast_id}
Authentication
This connector uses Bearer token authentication.
Provide:
api_token: Your Clari API token (sent asAuthorization: Bearer <token>).forecast_id: A forecast identifier used to validate access.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
api_token | string | Yes | Clari API token used for Bearer authentication. |
forecast_id | string | Yes | Forecast ID used to validate credentials against the Clari Forecasting API. |
Streams
No streams are currently exposed.
Note: The connector’s extraction logic is not yet implemented and will fail if you attempt to run a sync.
Limitations
- Extraction is not yet supported. The connector currently validates credentials only.
- No catalog/streams are returned at this time.
Troubleshooting
Credential validation failed
If you see an error indicating credential validation failed:
- Confirm the
api_tokenis valid and has not expired/revoked. - Confirm the
forecast_idexists and your token has access to it. - Ensure your network allows outbound HTTPS access to
app.clari.com.