> ## Documentation Index
> Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Pipeline CRM

> Integrate your application with the Pipeline CRM API

## 🚀 Quickstart

Connect to Pipeline CRM with Nango and see data flow in 2 minutes.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *Pipeline CRM*.
  </Step>

  <Step title="Authorize Pipeline CRM">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Authorize*, then enter your **App Key** and **API Key**. See the [connect guide](/docs/api-integrations/pipelinecrm/connect) for instructions on generating these credentials. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the Pipeline CRM API">
    Let's make your first request to the Pipeline CRM API (list deals). Replace the placeholders below with your [Environment API key](/docs/reference/backend/http-api/api-keys), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        curl "https://api.nango.dev/proxy/api/v3/deals.json" \
          -H "Authorization: Bearer <NANGO-API-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>"
        ```
      </Tab>

      <Tab title="Node">
        Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        import { Nango } from '@nangohq/node';

        const nango = new Nango({ apiKey: '<NANGO-API-KEY>' });

        const res = await nango.get({
            endpoint: '/api/v3/deals.json',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

    Or fetch credentials with the [Node SDK](/docs/reference/backend/backend-sdk/node#get-a-connection-with-credentials) or [API](/docs/reference/backend/http-api/connection/get).

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.
  </Step>

  <Step title="Implement Nango in your app">
    Follow our [quickstart](/docs/getting-started/quickstart) to integrate Nango in your app.

    To obtain your own production credentials, follow the connect guide linked below.
  </Step>
</Steps>

## 📚 Pipeline CRM Integration Guides

* [How to connect Pipeline CRM (App Key & API Key)](/docs/api-integrations/pipelinecrm/connect)\
  Generate an App Key and find your API Key from your Pipeline CRM admin settings.

Official docs: [Pipeline CRM API documentation](https://app.pipelinecrm.com/api/docs/introduction)

## 🧩 Pre-built syncs & actions for Pipeline CRM

Enable them in your dashboard. [Extend and customize](/docs/implementation-guides/platform/functions/customize-template) to fit your needs.

### Others

| Function name                        | Description                                                                                                 | Type                                           | Source code                                                                                                                                    |
| ------------------------------------ | ----------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `create-calendar-entry`              | Create a new task or event                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-calendar-entry.ts)              |
| `create-comment`                     | Add a comment to a note.                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-comment.ts)                     |
| `create-company`                     | Create a new company in Pipeline CRM.                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-company.ts)                     |
| `create-customer`                    | Mark a company as a customer (creates a Customer record tied to a company, tracking a health score).        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-customer.ts)                    |
| `create-deal`                        | Create a new deal.                                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-deal.ts)                        |
| `create-document`                    | Attach a file to a deal, person, or company by URL.                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-document.ts)                    |
| `create-lead-source`                 | Create a new lead source.                                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-lead-source.ts)                 |
| `create-note`                        | Create a new note (activity) associated with a deal, person, or company.                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-note.ts)                        |
| `create-person`                      | Create a new person (contact)                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-person.ts)                      |
| `create-team`                        | Create a new team.                                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-team.ts)                        |
| `create-webhook`                     | Subscribe a URL to a webhook event (event\_model + event\_action combination).                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/create-webhook.ts)                     |
| `delete-calendar-entry`              | Delete a calendar entry.                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/delete-calendar-entry.ts)              |
| `delete-comment`                     | Delete a comment.                                                                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/delete-comment.ts)                     |
| `delete-company`                     | Delete a company.                                                                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/delete-company.ts)                     |
| `delete-customer`                    | Remove a customer record from a company (does not delete the company itself).                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/delete-customer.ts)                    |
| `delete-deal`                        | Delete a deal.                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/delete-deal.ts)                        |
| `delete-document`                    | Delete a document.                                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/delete-document.ts)                    |
| `delete-lead-source`                 | Delete a lead source.                                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/delete-lead-source.ts)                 |
| `delete-note`                        | Delete a note.                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/delete-note.ts)                        |
| `delete-person`                      | Delete a person.                                                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/delete-person.ts)                      |
| `delete-team`                        | Delete a team.                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/delete-team.ts)                        |
| `get-account-notification`           | Get a single account notification by id.                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/get-account-notification.ts)           |
| `get-calendar-entry`                 | Get a single calendar entry (task or event) by id.                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/get-calendar-entry.ts)                 |
| `get-company`                        | Get a single company by id.                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/get-company.ts)                        |
| `get-deal`                           | Get a single deal by id.                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/get-deal.ts)                           |
| `get-document`                       | Get a single document by id.                                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/get-document.ts)                       |
| `get-note`                           | Get a single note by id.                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/get-note.ts)                           |
| `get-person`                         | Get a single person by id.                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/get-person.ts)                         |
| `get-profile`                        | Get the profile of the user this API key belongs to.                                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/get-profile.ts)                        |
| `get-team`                           | Get a single team by id.                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/get-team.ts)                           |
| `get-user`                           | Get a single user by id.                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/get-user.ts)                           |
| `list-account-notifications`         | List system-generated account notifications for the authenticated user.                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-account-notifications.ts)         |
| `list-calendar-entries`              | List calendar entries — a unified model covering both Tasks and Events.                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-calendar-entries.ts)              |
| `list-calendar-entry-priorities`     | List priority levels that can be assigned to a calendar entry.                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-calendar-entry-priorities.ts)     |
| `list-calendar-entry-statuses`       | List statuses that can be assigned to a calendar entry.                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-calendar-entry-statuses.ts)       |
| `list-comments`                      | List comments on a note.                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-comments.ts)                      |
| `list-companies`                     | List companies in this account.                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-companies.ts)                     |
| `list-company-custom-field-groups`   | List custom field groups defined for companies.                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-company-custom-field-groups.ts)   |
| `list-company-custom-field-labels`   | List individual custom field definitions available on companies.                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-company-custom-field-labels.ts)   |
| `list-company-tags`                  | List tags available for tagging companies.                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-company-tags.ts)                  |
| `list-custom-field-dropdown-entries` | List the picklist option values for dropdown-type custom fields.                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-custom-field-dropdown-entries.ts) |
| `list-deal-custom-field-groups`      | List custom field groups defined for deals.                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-deal-custom-field-groups.ts)      |
| `list-deal-custom-field-labels`      | List individual custom field definitions available on deals.                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-deal-custom-field-labels.ts)      |
| `list-deal-loss-reasons`             | List reasons that can be assigned when marking a deal lost.                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-deal-loss-reasons.ts)             |
| `list-deal-pipelines`                | List deal pipelines configured on this account.                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-deal-pipelines.ts)                |
| `list-deal-stages`                   | List deal stages (steps within a pipeline) configured on this account.                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-deal-stages.ts)                   |
| `list-deal-statuses`                 | List deal statuses configured on this account.                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-deal-statuses.ts)                 |
| `list-deal-tags`                     | List tags available for tagging deals.                                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-deal-tags.ts)                     |
| `list-deal-won-reasons`              | List reasons that can be assigned when marking a deal won.                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-deal-won-reasons.ts)              |
| `list-deals`                         | List deals in this account.                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-deals.ts)                         |
| `list-document-tags`                 | List tags available for tagging documents/files.                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-document-tags.ts)                 |
| `list-documents`                     | List documents (called "Files" in the Pipeline CRM UI) attached to deals/people/companies/calendar entries. | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-documents.ts)                     |
| `list-event-categories`              | List categories that can be assigned to a calendar entry (task or event).                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-event-categories.ts)              |
| `list-lead-sources`                  | List lead sources (how a person/deal originated) configured on this account.                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-lead-sources.ts)                  |
| `list-lead-statuses`                 | List lead statuses configured for People records.                                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-lead-statuses.ts)                 |
| `list-note-categories`               | List categories that can be assigned to a note (activity).                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-note-categories.ts)               |
| `list-notes`                         | List notes (activities) scoped to a deal, person, company, or across the account.                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-notes.ts)                         |
| `list-people`                        | List people (contacts/leads) in this account.                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-people.ts)                        |
| `list-person-custom-field-groups`    | List custom field groups defined for people.                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-person-custom-field-groups.ts)    |
| `list-person-custom-field-labels`    | List individual custom field definitions available on people.                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-person-custom-field-labels.ts)    |
| `list-person-tags`                   | List predefined tags available for tagging people/contacts.                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-person-tags.ts)                   |
| `list-product-lines`                 | List product lines configured on this account for tagging deals, people, and companies.                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-product-lines.ts)                 |
| `list-revenue-types`                 | List revenue types (e.g. New, Renewal) that can be assigned to a deal.                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-revenue-types.ts)                 |
| `list-teams`                         | List teams in this account.                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-teams.ts)                         |
| `list-users`                         | List users (team members) in this account.                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-users.ts)                         |
| `list-webhooks`                      | List webhook subscriptions configured on this account.                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/list-webhooks.ts)                      |
| `update-account-notification`        | Mark an account notification as seen/read.                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-account-notification.ts)        |
| `update-calendar-entry`              | Update a calendar entry, e.g. mark a task complete.                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-calendar-entry.ts)              |
| `update-comment`                     | Update an existing comment.                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-comment.ts)                     |
| `update-company`                     | Update fields on an existing company                                                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-company.ts)                     |
| `update-customer`                    | Update a customer record (e.g. reassign owner).                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-customer.ts)                    |
| `update-deal`                        | Update fields on an existing deal.                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-deal.ts)                        |
| `update-document`                    | Update a document's title or re-point it to a new file URL.                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-document.ts)                    |
| `update-lead-source`                 | Update a lead source.                                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-lead-source.ts)                 |
| `update-note`                        | Update the content of an existing note.                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-note.ts)                        |
| `update-person`                      | Update fields on an existing person.                                                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-person.ts)                      |
| `update-team`                        | Update a team's name.                                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-team.ts)                        |
| `update-user`                        | Update fields on an existing user.                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/actions/update-user.ts)                        |
| `calendar_entries`                   | Sync calendar entries (Tasks + Events) across the account                                                   | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/syncs/calendar_entries.ts)                     |
| `companies`                          | Sync companies in this account.                                                                             | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/syncs/companies.ts)                            |
| `deals`                              | Sync deals in this account.                                                                                 | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/syncs/deals.ts)                                |
| `documents`                          | Sync documents (files) attached to deals/people/companies/calendar entries.                                 | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/syncs/documents.ts)                            |
| `notes`                              | Sync notes (called Activities in the Pipeline CRM UI) across deals/people/companies                         | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/syncs/notes.ts)                                |
| `people`                             | Sync people (contacts/leads) in this account.                                                               | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/syncs/people.ts)                               |
| `teams`                              | Sync teams in this account.                                                                                 | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/syncs/teams.ts)                                |
| `users`                              | Sync users (team members) in this account                                                                   | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/pipelinecrm/syncs/users.ts)                                |
