> ## 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: Update Project

> Update a project. Pipedrive Update Project reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Update a project.

<Info>
  Tool ID: `pipedrive_update_project`
</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_update_project',
  {
    "id": 123
  },
);

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

### CLI

```bash theme={null}
deepline tools execute pipedrive_update_project --input '{
  "id": 123
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "success": true,
    "data": {
      "id": 123,
      "title": "VP of Engineering",
      "description": "Example description"
    }
  }
}
```

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

## Input reference

Updates the properties of a project.

| Name                    | Type      | Required | Default | Details                                                                                                                                                                                                                                                                                                                                              |
| ----------------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.id`            | `integer` | Yes      | —       | The ID of the project                                                                                                                                                                                                                                                                                                                                |
| `payload.title`         | `string`  | No       | —       | The title of the project                                                                                                                                                                                                                                                                                                                             |
| `payload.description`   | `string`  | No       | —       | The description of the project                                                                                                                                                                                                                                                                                                                       |
| `payload.status`        | `string`  | No       | —       | The status of the project                                                                                                                                                                                                                                                                                                                            |
| `payload.board_id`      | `integer` | No       | —       | The ID of the board this project is associated with                                                                                                                                                                                                                                                                                                  |
| `payload.phase_id`      | `integer` | No       | —       | The ID of the phase this project is associated with                                                                                                                                                                                                                                                                                                  |
| `payload.owner_id`      | `integer` | No       | —       | The ID of the user who owns the project                                                                                                                                                                                                                                                                                                              |
| `payload.start_date`    | `string`  | No       | —       | The start date of the project. Format: YYYY-MM-DD Format: `date`.                                                                                                                                                                                                                                                                                    |
| `payload.end_date`      | `string`  | No       | —       | The end date of the project. Format: YYYY-MM-DD Format: `date`.                                                                                                                                                                                                                                                                                      |
| `payload.deal_ids`      | `array`   | No       | —       | An array of IDs of the deals this project is associated with                                                                                                                                                                                                                                                                                         |
| `payload.person_ids`    | `array`   | No       | —       | An array of IDs of the persons this project is associated with                                                                                                                                                                                                                                                                                       |
| `payload.org_ids`       | `array`   | No       | —       | An array of IDs of the organizations this project is associated with                                                                                                                                                                                                                                                                                 |
| `payload.label_ids`     | `array`   | No       | —       | An array of IDs of the labels this project has                                                                                                                                                                                                                                                                                                       |
| `payload.health_status` | `integer` | No       | —       | The health status of the project                                                                                                                                                                                                                                                                                                                     |
| `payload.template_id`   | `integer` | No       | —       | The ID of the template the project will be based on. Only used when creating a new project.                                                                                                                                                                                                                                                          |
| `payload.custom_fields` | `object`  | No       | —       | An object where each key represents a custom field. All custom fields are referenced as randomly generated 40-character hashes. To clear a custom field value, set it to `null`. For multi-option fields (field type `set`), use `null` to clear the selection — sending an empty array `[]` is not supported and will result in a validation error. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Updates the properties of a project.",
    "properties": {
      "id": {
        "type": "integer",
        "description": "The ID of the project"
      },
      "title": {
        "type": "string",
        "description": "The title of the project"
      },
      "description": {
        "type": "string",
        "description": "The description of the project"
      },
      "status": {
        "type": "string",
        "description": "The status of the project"
      },
      "board_id": {
        "type": "integer",
        "description": "The ID of the board this project is associated with"
      },
      "phase_id": {
        "type": "integer",
        "description": "The ID of the phase this project is associated with"
      },
      "owner_id": {
        "type": "integer",
        "description": "The ID of the user who owns the project"
      },
      "start_date": {
        "type": "string",
        "description": "The start date of the project. Format: YYYY-MM-DD",
        "format": "date"
      },
      "end_date": {
        "type": "string",
        "description": "The end date of the project. Format: YYYY-MM-DD",
        "format": "date"
      },
      "deal_ids": {
        "type": "array",
        "description": "An array of IDs of the deals this project is associated with",
        "items": {
          "type": "integer"
        }
      },
      "person_ids": {
        "type": "array",
        "description": "An array of IDs of the persons this project is associated with",
        "items": {
          "type": "integer"
        }
      },
      "org_ids": {
        "type": "array",
        "description": "An array of IDs of the organizations this project is associated with",
        "items": {
          "type": "integer"
        }
      },
      "label_ids": {
        "type": "array",
        "description": "An array of IDs of the labels this project has",
        "items": {
          "type": "integer"
        }
      },
      "health_status": {
        "type": "integer",
        "description": "The health status of the project"
      },
      "template_id": {
        "type": "integer",
        "description": "The ID of the template the project will be based on. Only used when creating a new project."
      },
      "custom_fields": {
        "type": "object",
        "description": "An object where each key represents a custom field. All custom fields are referenced as randomly generated 40-character hashes. To clear a custom field value, set it to `null`. For multi-option fields (field type `set`), use `null` to clear the selection — sending an empty array `[]` is not supported and will result in a validation error.",
        "additionalProperties": true
      }
    },
    "required": [
      "id"
    ],
    "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.id`                 | `integer`         | No       | —       | The ID of the project                                                                                                                                                                                                                                                                                                                                |
| `result.data.data.title`              | `string`          | No       | —       | The title of the project                                                                                                                                                                                                                                                                                                                             |
| `result.data.data.description`        | `string`          | No       | —       | The description of the project                                                                                                                                                                                                                                                                                                                       |
| `result.data.data.status`             | `string`          | No       | —       | The status of the project                                                                                                                                                                                                                                                                                                                            |
| `result.data.data.board_id`           | `integer`         | No       | —       | The ID of the board this project is associated with                                                                                                                                                                                                                                                                                                  |
| `result.data.data.phase_id`           | `integer`         | No       | —       | The ID of the phase this project is associated with                                                                                                                                                                                                                                                                                                  |
| `result.data.data.owner_id`           | `integer`         | No       | —       | The ID of the user who owns the project                                                                                                                                                                                                                                                                                                              |
| `result.data.data.start_date`         | `string`          | No       | —       | The start date of the project. Format: YYYY-MM-DD Format: `date`.                                                                                                                                                                                                                                                                                    |
| `result.data.data.end_date`           | `string`          | No       | —       | The end date of the project. Format: YYYY-MM-DD Format: `date`.                                                                                                                                                                                                                                                                                      |
| `result.data.data.deal_ids`           | `array`           | No       | —       | An array of IDs of the deals this project is associated with                                                                                                                                                                                                                                                                                         |
| `result.data.data.person_ids`         | `array`           | No       | —       | An array of IDs of the persons this project is associated with                                                                                                                                                                                                                                                                                       |
| `result.data.data.org_ids`            | `array`           | No       | —       | An array of IDs of the organizations this project is associated with                                                                                                                                                                                                                                                                                 |
| `result.data.data.label_ids`          | `array`           | No       | —       | An array of IDs of the labels this project has                                                                                                                                                                                                                                                                                                       |
| `result.data.data.health_status`      | `integer \| null` | No       | —       | The health status of the project                                                                                                                                                                                                                                                                                                                     |
| `result.data.data.add_time`           | `string`          | No       | —       | The creation date and time of the project in ISO 8601 format                                                                                                                                                                                                                                                                                         |
| `result.data.data.update_time`        | `string`          | No       | —       | The last updated date and time of the project in ISO 8601 format                                                                                                                                                                                                                                                                                     |
| `result.data.data.status_change_time` | `string`          | No       | —       | The date and time of the last status change of the project in ISO 8601 format                                                                                                                                                                                                                                                                        |
| `result.data.data.archive_time`       | `string \| null`  | No       | —       | The date and time the project was archived in ISO 8601 format. If not archived, this field is null.                                                                                                                                                                                                                                                  |
| `result.data.data.custom_fields`      | `record`          | No       | —       | An object where each key represents a custom field. All custom fields are referenced as randomly generated 40-character hashes. To clear a custom field value, set it to `null`. For multi-option fields (field type `set`), use `null` to clear the selection — sending an empty array `[]` is not supported and will result in a validation error. |
| `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": {
              "id": {
                "type": "integer",
                "description": "The ID of the project"
              },
              "title": {
                "type": "string",
                "description": "The title of the project"
              },
              "description": {
                "type": "string",
                "description": "The description of the project"
              },
              "status": {
                "type": "string",
                "description": "The status of the project"
              },
              "board_id": {
                "type": "integer",
                "description": "The ID of the board this project is associated with"
              },
              "phase_id": {
                "type": "integer",
                "description": "The ID of the phase this project is associated with"
              },
              "owner_id": {
                "type": "integer",
                "description": "The ID of the user who owns the project"
              },
              "start_date": {
                "type": "string",
                "description": "The start date of the project. Format: YYYY-MM-DD",
                "format": "date"
              },
              "end_date": {
                "type": "string",
                "description": "The end date of the project. Format: YYYY-MM-DD",
                "format": "date"
              },
              "deal_ids": {
                "type": "array",
                "description": "An array of IDs of the deals this project is associated with",
                "items": {
                  "type": "integer"
                }
              },
              "person_ids": {
                "type": "array",
                "description": "An array of IDs of the persons this project is associated with",
                "items": {
                  "type": "integer"
                }
              },
              "org_ids": {
                "type": "array",
                "description": "An array of IDs of the organizations this project is associated with",
                "items": {
                  "type": "integer"
                }
              },
              "label_ids": {
                "type": "array",
                "description": "An array of IDs of the labels this project has",
                "items": {
                  "type": "integer"
                }
              },
              "health_status": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "The health status of the project"
              },
              "add_time": {
                "type": "string",
                "description": "The creation date and time of the project in ISO 8601 format"
              },
              "update_time": {
                "type": "string",
                "description": "The last updated date and time of the project in ISO 8601 format"
              },
              "status_change_time": {
                "type": "string",
                "description": "The date and time of the last status change of the project in ISO 8601 format"
              },
              "archive_time": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "The date and time the project was archived in ISO 8601 format. If not archived, this field is null."
              },
              "custom_fields": {
                "type": "object",
                "description": "An object where each key represents a custom field. All custom fields are referenced as randomly generated 40-character hashes. To clear a custom field value, set it to `null`. For multi-option fields (field type `set`), use `null` to clear the selection — sending an empty array `[]` is not supported and will result in a validation error.",
                "additionalProperties": true
              }
            },
            "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)
