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

# Pipedrive: Search Projects

> Search projects. Pipedrive Search Projects reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Search projects.

<Info>
  Tool ID: `pipedrive_search_projects`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'pipedrive_search_projects',
  {
    "term": "software companies hiring engineers"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute pipedrive_search_projects --input '{
  "term": "software companies hiring engineers"
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "success": true,
    "data": {
      "items": [
        {
          "result_score": 123,
          "item": {}
        }
      ]
    },
    "additional_data": {
      "next_cursor": "cursor_123"
    }
  }
}
```

Use `deepline tools get pipedrive_search_projects --json` for the latest machine-readable contract.

## Input reference

Searches all projects by title, description, notes and/or custom fields. This endpoint is a wrapper of /v1/itemSearch with a narrower OAuth scope. Found projects can be filtered by person ID or organization ID.

| Name                      | Type                                                     | Required | Default | Details                                                                                                                                                                                                                                                                                                                                            |
| ------------------------- | -------------------------------------------------------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.term`            | `string`                                                 | Yes      | —       | The search term to look for. Minimum 2 characters (or 1 if using `exact_match`). Please note that the search term has to be URL encoded.                                                                                                                                                                                                           |
| `payload.fields`          | `"custom_fields" \| "notes" \| "title" \| "description"` | No       | —       | A comma-separated string array. The fields to perform the search from. Defaults to all of them. Only the following custom field types are searchable: `address`, `varchar`, `text`, `varchar_auto`, `double`, `monetary` and `phone`. Read more about searching by custom fields here . Allowed: `custom_fields`, `notes`, `title`, `description`. |
| `payload.exact_match`     | `boolean`                                                | No       | —       | When enabled, only full exact matches against the given term are returned. It is not case sensitive.                                                                                                                                                                                                                                               |
| `payload.person_id`       | `integer`                                                | No       | —       | Will filter projects by the provided person ID                                                                                                                                                                                                                                                                                                     |
| `payload.organization_id` | `integer`                                                | No       | —       | Will filter projects by the provided organization ID                                                                                                                                                                                                                                                                                               |
| `payload.limit`           | `integer`                                                | No       | —       | For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed.                                                                                                                                                                                              |
| `payload.cursor`          | `string`                                                 | No       | —       | For pagination, the marker (an opaque string value) representing the first item on the next page                                                                                                                                                                                                                                                   |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Searches all projects by title, description, notes and/or custom fields. This endpoint is a wrapper of /v1/itemSearch with a narrower OAuth scope. Found projects can be filtered by person ID or organization ID.",
    "properties": {
      "term": {
        "type": "string",
        "description": "The search term to look for. Minimum 2 characters (or 1 if using `exact_match`). Please note that the search term has to be URL encoded."
      },
      "fields": {
        "type": "string",
        "description": "A comma-separated string array. The fields to perform the search from. Defaults to all of them. Only the following custom field types are searchable: `address`, `varchar`, `text`, `varchar_auto`, `double`, `monetary` and `phone`. Read more about searching by custom fields here .",
        "enum": [
          "custom_fields",
          "notes",
          "title",
          "description"
        ]
      },
      "exact_match": {
        "type": "boolean",
        "description": "When enabled, only full exact matches against the given term are returned. It is not case sensitive."
      },
      "person_id": {
        "type": "integer",
        "description": "Will filter projects by the provided person ID"
      },
      "organization_id": {
        "type": "integer",
        "description": "Will filter projects by the provided organization ID"
      },
      "limit": {
        "type": "integer",
        "description": "For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed."
      },
      "cursor": {
        "type": "string",
        "description": "For pagination, the marker (an opaque string value) representing the first item on the next page"
      }
    },
    "required": [
      "term"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                 | Type              | Required | Default | Details                                                                                                                                                                   |
| ---------------------------------------------------- | ----------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result.data`                                        | `object`          | Yes      | —       | Provider response payload.                                                                                                                                                |
| `result.data.success`                                | `boolean`         | No       | —       | If the response is successful or not                                                                                                                                      |
| `result.data.data`                                   | `object`          | No       | —       | —                                                                                                                                                                         |
| `result.data.data.items`                             | `array`           | No       | —       | The array of found projects                                                                                                                                               |
| `result.data.data.items[].result_score`              | `number`          | No       | —       | Search result relevancy                                                                                                                                                   |
| `result.data.data.items[].item`                      | `object`          | No       | —       | —                                                                                                                                                                         |
| `result.data.data.items[].item.id`                   | `integer`         | No       | —       | The ID of the project                                                                                                                                                     |
| `result.data.data.items[].item.type`                 | `string`          | No       | —       | The type of the item                                                                                                                                                      |
| `result.data.data.items[].item.title`                | `string`          | No       | —       | The title of the project                                                                                                                                                  |
| `result.data.data.items[].item.status`               | `string \| null`  | No       | —       | The status of the project                                                                                                                                                 |
| `result.data.data.items[].item.owner`                | `object`          | No       | —       | —                                                                                                                                                                         |
| `result.data.data.items[].item.owner.id`             | `integer \| null` | No       | —       | The ID of the owner of the project                                                                                                                                        |
| `result.data.data.items[].item.board_id`             | `integer \| null` | No       | —       | The ID of the board the project belongs to                                                                                                                                |
| `result.data.data.items[].item.phase`                | `object \| null`  | No       | —       | —                                                                                                                                                                         |
| `result.data.data.items[].item.phase.id`             | `integer`         | No       | —       | The ID of the phase                                                                                                                                                       |
| `result.data.data.items[].item.phase.name`           | `string`          | No       | —       | The name of the phase                                                                                                                                                     |
| `result.data.data.items[].item.person`               | `object \| null`  | No       | —       | —                                                                                                                                                                         |
| `result.data.data.items[].item.person.id`            | `integer`         | No       | —       | The ID of the person the project is associated with                                                                                                                       |
| `result.data.data.items[].item.person.name`          | `string \| null`  | No       | —       | The name of the person the project is associated with                                                                                                                     |
| `result.data.data.items[].item.organization`         | `object \| null`  | No       | —       | —                                                                                                                                                                         |
| `result.data.data.items[].item.organization.id`      | `integer`         | No       | —       | The ID of the organization the project is associated with                                                                                                                 |
| `result.data.data.items[].item.organization.name`    | `string \| null`  | No       | —       | The name of the organization the project is associated with                                                                                                               |
| `result.data.data.items[].item.organization.address` | `string \| null`  | No       | —       | The address of the organization the project is associated with                                                                                                            |
| `result.data.data.items[].item.deal`                 | `object \| null`  | No       | —       | —                                                                                                                                                                         |
| `result.data.data.items[].item.deal.id`              | `integer`         | No       | —       | The ID of the deal the project is associated with                                                                                                                         |
| `result.data.data.items[].item.deal.title`           | `string \| null`  | No       | —       | The title of the deal the project is associated with                                                                                                                      |
| `result.data.data.items[].item.deal_count`           | `integer`         | No       | —       | The number of deals associated with the project                                                                                                                           |
| `result.data.data.items[].item.description`          | `string \| null`  | No       | —       | The description of the project                                                                                                                                            |
| `result.data.data.items[].item.end_date`             | `string \| null`  | No       | —       | The end date of the project                                                                                                                                               |
| `result.data.data.items[].item.custom_fields`        | `array`           | No       | —       | Custom fields                                                                                                                                                             |
| `result.data.data.items[].item.notes`                | `array`           | No       | —       | An array of notes                                                                                                                                                         |
| `result.data.additional_data`                        | `object`          | No       | —       | The additional data of the list                                                                                                                                           |
| `result.data.additional_data.next_cursor`            | `string`          | No       | —       | The first item on the next page. The value of the `next_cursor` field will be `null` if you have reached the end of the dataset and there’s no more pages to be returned. |
| `result.meta`                                        | `object`          | No       | —       | Additional response metadata (status, paging).                                                                                                                            |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "properties": {
          "success": {
            "type": "boolean",
            "description": "If the response is successful or not"
          },
          "data": {
            "type": "object",
            "properties": {
              "items": {
                "type": "array",
                "description": "The array of found projects",
                "items": {
                  "type": "object",
                  "properties": {
                    "result_score": {
                      "type": "number",
                      "description": "Search result relevancy"
                    },
                    "item": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "integer",
                          "description": "The ID of the project"
                        },
                        "type": {
                          "type": "string",
                          "description": "The type of the item"
                        },
                        "title": {
                          "type": "string",
                          "description": "The title of the project"
                        },
                        "status": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "description": "The status of the project"
                        },
                        "owner": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": [
                                "integer",
                                "null"
                              ],
                              "description": "The ID of the owner of the project"
                            }
                          },
                          "additionalProperties": false
                        },
                        "board_id": {
                          "type": [
                            "integer",
                            "null"
                          ],
                          "description": "The ID of the board the project belongs to"
                        },
                        "phase": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "id": {
                              "type": "integer",
                              "description": "The ID of the phase"
                            },
                            "name": {
                              "type": "string",
                              "description": "The name of the phase"
                            }
                          },
                          "additionalProperties": false
                        },
                        "person": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "id": {
                              "type": "integer",
                              "description": "The ID of the person the project is associated with"
                            },
                            "name": {
                              "type": [
                                "string",
                                "null"
                              ],
                              "description": "The name of the person the project is associated with"
                            }
                          },
                          "additionalProperties": false
                        },
                        "organization": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "id": {
                              "type": "integer",
                              "description": "The ID of the organization the project is associated with"
                            },
                            "name": {
                              "type": [
                                "string",
                                "null"
                              ],
                              "description": "The name of the organization the project is associated with"
                            },
                            "address": {
                              "type": [
                                "string",
                                "null"
                              ],
                              "description": "The address of the organization the project is associated with"
                            }
                          },
                          "additionalProperties": false
                        },
                        "deal": {
                          "type": [
                            "object",
                            "null"
                          ],
                          "properties": {
                            "id": {
                              "type": "integer",
                              "description": "The ID of the deal the project is associated with"
                            },
                            "title": {
                              "type": [
                                "string",
                                "null"
                              ],
                              "description": "The title of the deal the project is associated with"
                            }
                          },
                          "additionalProperties": false
                        },
                        "deal_count": {
                          "type": "integer",
                          "description": "The number of deals associated with the project"
                        },
                        "description": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "description": "The description of the project"
                        },
                        "end_date": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "description": "The end date of the project"
                        },
                        "custom_fields": {
                          "type": "array",
                          "description": "Custom fields",
                          "items": {
                            "type": "string"
                          }
                        },
                        "notes": {
                          "type": "array",
                          "description": "An array of notes",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "additionalProperties": false
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          "additional_data": {
            "type": "object",
            "description": "The additional data of the list",
            "properties": {
              "next_cursor": {
                "type": "string",
                "description": "The first item on the next page. The value of the `next_cursor` field will be `null` if you have reached the end of the dataset and there’s no more pages to be returned."
              }
            },
            "additionalProperties": false
          }
        },
        "required": [],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [Pipedrive provider guide](/docs/providers/pipedrive/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
