
Configuring Clint as a Source
In the Sources tab, click on the “Add source” button located on the top right of your screen. Then, select the Clint option from the list of connectors. Click Next and you’ll be prompted to add your access.1. Add account access
You’ll need to provide your Clint API token so Nekt can access your data. The token is sent in theapi-token header for all API requests.
The following configurations are available:
-
API Token: Your Clint API token. This is required and is sent in the
api-tokenheader. Obtain it from your Clint account or API settings. -
Start Date: (Optional) For streams that support incremental sync (e.g. Deals), only records with
updated_atgreater than or equal to this date are synced on the first run when no bookmark exists.
2. Select streams
Choose which data streams you want to sync. For faster extractions, select only the streams that are relevant to your analysis. You can select entire groups of streams or pick specific ones.Tip: The stream can be found more easily by typing its name.Select the streams and click Next.
3. Configure data streams
Customize how you want your data to appear in your catalog. Select the desired layer where the data will be placed, a folder to organize it inside the layer, a name for each table (which will effectively contain the fetched data) and the type of sync.- Layer: choose between the existing layers on your catalog. This is where you will find your new extracted tables as the extraction runs successfully.
- Folder: a folder can be created inside the selected layer to group all tables being created from this new data source.
- Table name: we suggest a name, but feel free to customize it. You have the option to add a prefix to all tables at once and make this process faster!
- Sync Type: you can choose between INCREMENTAL and FULL_TABLE.
- Incremental: every time the extraction happens, we’ll get only the new data - which is good if, for example, you want to keep every record ever fetched. The Deals stream supports incremental sync based on
updated_at. - Full table: every time the extraction happens, we’ll get the current state of the data - which is good if, for example, you don’t want to have deleted data in your catalog. Contacts, Groups, and Origins are typically synced as full table.
- Incremental: every time the extraction happens, we’ll get only the new data - which is good if, for example, you want to keep every record ever fetched. The Deals stream supports incremental sync based on
4. Configure data source
Describe your data source for easy identification within your organization, not exceeding 140 characters. To define your Trigger, consider how often you want data to be extracted from this source. This decision usually depends on how frequently you need the new table data updated (every day, once a week, or only at specific times). Optionally, you can define some additional settings:- Configure Delta Log Retention and determine for how long we should store old states of this table as it gets updated. Read more about this resource here.
- Determine when to execute an Additional Full Sync. This will complement the incremental data extractions, ensuring that your data is completely synchronized with your source every once in a while.
5. Check your new source
You can view your new source on the Sources page. If needed, manually trigger the source extraction by clicking on the arrow button. Once executed, your data will appear in your Catalog.Streams and Fields
Below you’ll find all available data streams from Clint and their corresponding fields:Contacts
Contacts
Stream for Clint contacts (paginated list). Uses full table sync.
| Field | Type | Description |
|---|---|---|
id | String | Contact UUID |
name | String | Contact name |
email | String | Contact e-mail |
username | String | Username |
ddi | String | International dialing code (DDI) |
phone | String | Phone number without DDI |
fullPhone | String | Full phone with DDI (country code) |
organization.id | String | Organization ID |
organization.name | String | Organization name |
organization.fields | String | Custom organization fields (JSON string) |
created_at | DateTime | Created at |
updated_at | DateTime | Last updated at |
tags | Array | Array of contact tags, each with id, name, and color |
fields | String | Custom contact fields, stored as a JSON object string |
Deals
Deals
Stream for Clint deals. Supports incremental sync via
updated_at.| Field | Type | Description |
|---|---|---|
id | String | Deal UUID |
origin_id | String | Origin UUID |
stage_id | String | Stage UUID |
stage | String | Deal stage name |
status | String | Deal status (OPEN, WON, LOST) |
value | Number | Deal monetary value |
created_at | DateTime | Created at |
updated_at | DateTime | Last updated at (any change); used for incremental sync |
updated_stage_at | DateTime | Last stage update at |
won_at | DateTime | Won at |
lost_at | DateTime | Lost at |
won_by | String | Won by user UUID |
lost_by | String | Lost by user UUID |
lost_status_id | String | Lost status UUID |
user | Object | Deal owner object: id (User UUID), email, full_name |
contact | Object | Deal contact object: id, name, email, phone, ddi, instagram |
latest_meeting_datetime | DateTime | Date and time of the latest meeting |
latest_meeting_link | String | Link to the latest meeting |
fields | String | Additional deal fields, stored as a JSON object string |
Groups
Groups
Stream for Clint groups (paginated list). Use for full table sync of groups.
| Field | Type | Description |
|---|---|---|
id | String | Group UUID |
name | String | Group name |
archived_at | DateTime | Archived at |
archived_by | String | Archived by user UUID |
Origins
Origins
Stream for Clint origins (paginated list). Use for full table sync of origins.
| Field | Type | Description |
|---|---|---|
id | String | Origin UUID |
name | String | Origin name |
group | Object | Group info for the origin including id (Group UUID) and name |
stages | Array | List of stages for the origin, each with id, label, order, and type |
archived_at | DateTime | Archived at |
archived_by | String | Archived by user UUID |
Data Model
The following diagram illustrates the relationships between the core data streams in Clint. Deals reference contacts and are owned by users; origins contain stages and belong to groups.Implementation Notes
Authentication
- The connector sends your API token in the
api-tokenHTTP header for every request tohttps://api.clint.digital/v1. - Keep your API token secret and do not share it; it is stored securely in Nekt.
Sync behavior
- Contacts, Groups, and Origins: No replication key; use FULL_TABLE to sync the current state.
- Deals: Replication key is
updated_at. Use INCREMENTAL to fetch only records changed since the last run. On the first run (or when no bookmark exists), the optional Start Date config is used asupdated_at_startso you can limit the initial extract to a date range.
Custom fields
- Contacts and Deals can have custom
fields(key-value data). The tap serializes these as JSON strings in thefieldscolumn for compatibility with a fixed schema since fields can be dynamic.
Skills for agents
Download Clint skills file
Clint connector documentation as plain markdown, for use in AI agent contexts.