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

# rentman-projects

> Rentman Projects - manage projects, subprojects, types, crew assignments, and vehicles

**Server path:** `/rentman-projects` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                                                                        | Description                           |
| ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------- |
| [`rentman_projects_create_project`](#rentman_projects_create_project)                                                                       | Create Project item.                  |
| [`rentman_projects_create_project_cost`](#rentman_projects_create_project_cost)                                                             | Create ProjectCost item.              |
| [`rentman_projects_create_project_function`](#rentman_projects_create_project_function)                                                     | Create ProjectFunction item.          |
| [`rentman_projects_create_project_function_group`](#rentman_projects_create_project_function_group)                                         | Create ProjectFunctionGroup item.     |
| [`rentman_projects_create_subproject`](#rentman_projects_create_subproject)                                                                 | Create Subproject item.               |
| [`rentman_projects_get_actual_content_collection`](#rentman_projects_get_actual_content_collection)                                         | Get ActualContent collection.         |
| [`rentman_projects_get_actual_content_item`](#rentman_projects_get_actual_content_item)                                                     | Get ActualContent item.               |
| [`rentman_projects_get_project_collection`](#rentman_projects_get_project_collection)                                                       | Get Project collection.               |
| [`rentman_projects_get_project_contract_collection`](#rentman_projects_get_project_contract_collection)                                     | Get Contract collection.              |
| [`rentman_projects_get_project_crew_collection`](#rentman_projects_get_project_crew_collection)                                             | Get ProjectCrew collection.           |
| [`rentman_projects_get_project_crew_item`](#rentman_projects_get_project_crew_item)                                                         | Get ProjectCrew item.                 |
| [`rentman_projects_get_project_file_collection`](#rentman_projects_get_project_file_collection)                                             | Get File collection.                  |
| [`rentman_projects_get_project_file_folder_collection`](#rentman_projects_get_project_file_folder_collection)                               | Get FileFolder collection.            |
| [`rentman_projects_get_project_item`](#rentman_projects_get_project_item)                                                                   | Get Project item.                     |
| [`rentman_projects_get_project_project_cost_collection`](#rentman_projects_get_project_project_cost_collection)                             | Get ProjectCost collection.           |
| [`rentman_projects_get_project_project_crew_collection`](#rentman_projects_get_project_project_crew_collection)                             | Get ProjectCrew collection.           |
| [`rentman_projects_get_project_project_equipment_collection`](#rentman_projects_get_project_project_equipment_collection)                   | Get ProjectEquipment collection.      |
| [`rentman_projects_get_project_project_equipment_group_collection`](#rentman_projects_get_project_project_equipment_group_collection)       | Get ProjectEquipmentGroup collection. |
| [`rentman_projects_get_project_project_function_collection`](#rentman_projects_get_project_project_function_collection)                     | Get ProjectFunction collection.       |
| [`rentman_projects_get_project_project_function_group_collection`](#rentman_projects_get_project_project_function_group_collection)         | Get ProjectFunctionGroup collection.  |
| [`rentman_projects_get_project_project_vehicle_collection`](#rentman_projects_get_project_project_vehicle_collection)                       | Get ProjectVehicle collection.        |
| [`rentman_projects_get_project_quotation_collection`](#rentman_projects_get_project_quotation_collection)                                   | Get Quotation collection.             |
| [`rentman_projects_get_project_subproject_collection`](#rentman_projects_get_project_subproject_collection)                                 | Get Subproject collection.            |
| [`rentman_projects_get_project_type_collection`](#rentman_projects_get_project_type_collection)                                             | Get ProjectType collection.           |
| [`rentman_projects_get_project_type_item`](#rentman_projects_get_project_type_item)                                                         | Get ProjectType item.                 |
| [`rentman_projects_get_project_vehicle_collection`](#rentman_projects_get_project_vehicle_collection)                                       | Get ProjectVehicle collection.        |
| [`rentman_projects_get_project_vehicle_item`](#rentman_projects_get_project_vehicle_item)                                                   | Get ProjectVehicle item.              |
| [`rentman_projects_get_subproject_collection`](#rentman_projects_get_subproject_collection)                                                 | Get Subproject collection.            |
| [`rentman_projects_get_subproject_file_folder_collection`](#rentman_projects_get_subproject_file_folder_collection)                         | Get FileFolder collection.            |
| [`rentman_projects_get_subproject_item`](#rentman_projects_get_subproject_item)                                                             | Get Subproject item.                  |
| [`rentman_projects_get_subproject_project_crew_collection`](#rentman_projects_get_subproject_project_crew_collection)                       | Get ProjectCrew collection.           |
| [`rentman_projects_get_subproject_project_equipment_collection`](#rentman_projects_get_subproject_project_equipment_collection)             | Get ProjectEquipment collection.      |
| [`rentman_projects_get_subproject_project_equipment_group_collection`](#rentman_projects_get_subproject_project_equipment_group_collection) | Get ProjectEquipmentGroup collection. |
| [`rentman_projects_get_subproject_project_function_group_collection`](#rentman_projects_get_subproject_project_function_group_collection)   | Get ProjectFunctionGroup collection.  |
| [`rentman_projects_get_subproject_project_vehicle_collection`](#rentman_projects_get_subproject_project_vehicle_collection)                 | Get ProjectVehicle collection.        |

***

## rentman\_projects\_create\_project

Create Project item.

**Parameters:**

| Parameter   | Type   | Required | Default | Description                                      |
| ----------- | ------ | -------- | ------- | ------------------------------------------------ |
| `custom`    | object | No       | —       | The object containing all custom defined fields. |
| `name`      | string | No       | —       | The name value                                   |
| `number`    | string | No       | —       | The number value                                 |
| `reference` | string | No       | —       | The reference value                              |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "custom": {
        "type": "object",
        "description": "The object containing all custom defined fields."
      },
      "name": {
        "type": "string",
        "description": "The name value"
      },
      "number": {
        "type": "string",
        "description": "The number value"
      },
      "reference": {
        "type": "string",
        "description": "The reference value"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_create\_project\_cost

Create ProjectCost item.

**Parameters:**

| Parameter        | Type    | Required | Default | Description                                      |                                                                                                        |
| ---------------- | ------- | -------- | ------- | ------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
| `id`             | integer | Yes      | —       | Numeric ID of the itemtype                       |                                                                                                        |
| `custom`         | object  | No       | —       | The object containing all custom defined fields. |                                                                                                        |
| `discount`       | number  | No       | —       | The discount value                               |                                                                                                        |
| `is_template`    | boolean | No       | —       | Is Template                                      |                                                                                                        |
| `ledger`         | string  | null     | No      | —                                                | The ledger value                                                                                       |
| `ledger_debit`   | string  | null     | No      | —                                                | Ledger Debit                                                                                           |
| `name`           | string  | No       | —       | The name value                                   |                                                                                                        |
| `purchase_price` | number  | No       | —       | Purchase Price                                   |                                                                                                        |
| `quantity`       | integer | No       | —       | The quantity value                               |                                                                                                        |
| `remark`         | string  | No       | —       | The remark value                                 |                                                                                                        |
| `sale_price`     | number  | No       | —       | Sale Price                                       |                                                                                                        |
| `subproject`     | string  | Yes      | —       | The subproject value                             |                                                                                                        |
| `taxclass`       | string  | null     | No      | —                                                | This class, in combination with the chosen VAT scheme at project level, determines the final VAT rate. |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      },
      "custom": {
        "type": "object",
        "description": "The object containing all custom defined fields."
      },
      "discount": {
        "type": "number",
        "description": "The discount value"
      },
      "is_template": {
        "type": "boolean",
        "description": "Is Template"
      },
      "ledger": {
        "type": [
          "string",
          "null"
        ],
        "description": "The ledger value"
      },
      "ledger_debit": {
        "type": [
          "string",
          "null"
        ],
        "description": "Ledger Debit"
      },
      "name": {
        "type": "string",
        "description": "The name value"
      },
      "purchase_price": {
        "type": "number",
        "description": "Purchase Price"
      },
      "quantity": {
        "type": "integer",
        "description": "The quantity value"
      },
      "remark": {
        "type": "string",
        "description": "The remark value"
      },
      "sale_price": {
        "type": "number",
        "description": "Sale Price"
      },
      "subproject": {
        "type": "string",
        "description": "The subproject value"
      },
      "taxclass": {
        "type": [
          "string",
          "null"
        ],
        "description": "This class, in combination with the chosen VAT scheme at project level, determines the final VAT rate."
      }
    },
    "required": [
      "PCID",
      "id",
      "subproject"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_create\_project\_function

Create ProjectFunction item.

**Parameters:**

| Parameter             | Type    | Required | Default | Description                                                                                  |                   |
| --------------------- | ------- | -------- | ------- | -------------------------------------------------------------------------------------------- | ----------------- |
| `id`                  | integer | Yes      | —       | Numeric ID of the itemtype                                                                   |                   |
| `amount`              | integer | No       | —       | The amount value                                                                             |                   |
| `cost_accommodation`  | number  | No       | —       | Cost Accommodation                                                                           |                   |
| `cost_catering`       | number  | No       | —       | Cost Catering                                                                                |                   |
| `cost_other`          | number  | No       | —       | Cost Other                                                                                   |                   |
| `cost_rate`           | string  | Yes      | —       | Cost Rate                                                                                    |                   |
| `cost_travel`         | number  | No       | —       | Cost Travel                                                                                  |                   |
| `custom`              | object  | No       | —       | The object containing all custom defined fields.                                             |                   |
| `group`               | string  | null     | No      | —                                                                                            | The group value   |
| `is_plannable`        | boolean | No       | —       | If yes, crew members scheduled on this shift will be shown as available for other functions. |                   |
| `name`                | string  | No       | —       | Name on packing lists.                                                                       |                   |
| `name_external`       | string  | No       | —       | Name on financial documents.                                                                 |                   |
| `planperiod_end`      | string  | null     | No      | —                                                                                            | Planperiod End    |
| `planperiod_start`    | string  | null     | No      | —                                                                                            | Planperiod Start  |
| `price_accommodation` | number  | No       | —       | Price Accommodation                                                                          |                   |
| `price_catering`      | number  | No       | —       | Price Catering                                                                               |                   |
| `price_other`         | number  | No       | —       | Price Other                                                                                  |                   |
| `price_rate`          | string  | Yes      | —       | Price Rate                                                                                   |                   |
| `price_travel`        | number  | No       | —       | Price Travel                                                                                 |                   |
| `subproject`          | string  | Yes      | —       | The subproject value                                                                         |                   |
| `type`                | string  | No       | —       | The type value                                                                               |                   |
| `usageperiod_end`     | string  | null     | No      | —                                                                                            | Usageperiod End   |
| `usageperiod_start`   | string  | null     | No      | —                                                                                            | Usageperiod Start |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      },
      "amount": {
        "type": "integer",
        "description": "The amount value"
      },
      "cost_accommodation": {
        "type": "number",
        "description": "Cost Accommodation"
      },
      "cost_catering": {
        "type": "number",
        "description": "Cost Catering"
      },
      "cost_other": {
        "type": "number",
        "description": "Cost Other"
      },
      "cost_rate": {
        "type": "string",
        "description": "Cost Rate"
      },
      "cost_travel": {
        "type": "number",
        "description": "Cost Travel"
      },
      "custom": {
        "type": "object",
        "description": "The object containing all custom defined fields."
      },
      "group": {
        "type": [
          "string",
          "null"
        ],
        "description": "The group value"
      },
      "is_plannable": {
        "type": "boolean",
        "description": "If yes, crew members scheduled on this shift will be shown as available for other functions."
      },
      "name": {
        "type": "string",
        "description": "Name on packing lists."
      },
      "name_external": {
        "type": "string",
        "description": "Name on financial documents."
      },
      "planperiod_end": {
        "type": [
          "string",
          "null"
        ],
        "description": "Planperiod End"
      },
      "planperiod_start": {
        "type": [
          "string",
          "null"
        ],
        "description": "Planperiod Start"
      },
      "price_accommodation": {
        "type": "number",
        "description": "Price Accommodation"
      },
      "price_catering": {
        "type": "number",
        "description": "Price Catering"
      },
      "price_other": {
        "type": "number",
        "description": "Price Other"
      },
      "price_rate": {
        "type": "string",
        "description": "Price Rate"
      },
      "price_travel": {
        "type": "number",
        "description": "Price Travel"
      },
      "subproject": {
        "type": "string",
        "description": "The subproject value"
      },
      "type": {
        "type": "string",
        "description": "The type value",
        "enum": [
          "crew_function",
          "transport_function",
          "remark",
          "shift"
        ]
      },
      "usageperiod_end": {
        "type": [
          "string",
          "null"
        ],
        "description": "Usageperiod End"
      },
      "usageperiod_start": {
        "type": [
          "string",
          "null"
        ],
        "description": "Usageperiod Start"
      }
    },
    "required": [
      "PCID",
      "id",
      "cost_rate",
      "price_rate",
      "subproject"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_create\_project\_function\_group

Create ProjectFunctionGroup item.

**Parameters:**

| Parameter           | Type    | Required | Default | Description                |                   |
| ------------------- | ------- | -------- | ------- | -------------------------- | ----------------- |
| `id`                | integer | Yes      | —       | Numeric ID of the itemtype |                   |
| `name`              | string  | No       | —       | The name value             |                   |
| `planperiod_end`    | string  | null     | No      | —                          | Planperiod End    |
| `planperiod_start`  | string  | null     | No      | —                          | Planperiod Start  |
| `remark`            | string  | No       | —       | The remark value           |                   |
| `subproject`        | string  | Yes      | —       | The subproject value       |                   |
| `usageperiod_end`   | string  | null     | No      | —                          | Usageperiod End   |
| `usageperiod_start` | string  | null     | No      | —                          | Usageperiod Start |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      },
      "name": {
        "type": "string",
        "description": "The name value"
      },
      "planperiod_end": {
        "type": [
          "string",
          "null"
        ],
        "description": "Planperiod End"
      },
      "planperiod_start": {
        "type": [
          "string",
          "null"
        ],
        "description": "Planperiod Start"
      },
      "remark": {
        "type": "string",
        "description": "The remark value"
      },
      "subproject": {
        "type": "string",
        "description": "The subproject value"
      },
      "usageperiod_end": {
        "type": [
          "string",
          "null"
        ],
        "description": "Usageperiod End"
      },
      "usageperiod_start": {
        "type": [
          "string",
          "null"
        ],
        "description": "Usageperiod Start"
      }
    },
    "required": [
      "PCID",
      "id",
      "subproject"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_create\_subproject

Create Subproject item.

**Parameters:**

| Parameter | Type    | Required | Default | Description                                      |
| --------- | ------- | -------- | ------- | ------------------------------------------------ |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype                       |
| `custom`  | object  | No       | —       | The object containing all custom defined fields. |
| `name`    | string  | No       | —       | The name value                                   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      },
      "custom": {
        "type": "object",
        "description": "The object containing all custom defined fields."
      },
      "name": {
        "type": "string",
        "description": "The name value"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_actual\_content\_collection

Get ActualContent collection.

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_actual\_content\_item

Get ActualContent item.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_collection

Get Project collection.

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_contract\_collection

Get Contract collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_crew\_collection

Get ProjectCrew collection.

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_crew\_item

Get ProjectCrew item.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_file\_collection

Get File collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_file\_folder\_collection

Get FileFolder collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_item

Get Project item.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_project\_cost\_collection

Get ProjectCost collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_project\_crew\_collection

Get ProjectCrew collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_project\_equipment\_collection

Get ProjectEquipment collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_project\_equipment\_group\_collection

Get ProjectEquipmentGroup collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_project\_function\_collection

Get ProjectFunction collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_project\_function\_group\_collection

Get ProjectFunctionGroup collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_project\_vehicle\_collection

Get ProjectVehicle collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_quotation\_collection

Get Quotation collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_subproject\_collection

Get Subproject collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_type\_collection

Get ProjectType collection.

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_type\_item

Get ProjectType item.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_vehicle\_collection

Get ProjectVehicle collection.

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_project\_vehicle\_item

Get ProjectVehicle item.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_subproject\_collection

Get Subproject collection.

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_subproject\_file\_folder\_collection

Get FileFolder collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_subproject\_item

Get Subproject item.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_subproject\_project\_crew\_collection

Get ProjectCrew collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_subproject\_project\_equipment\_collection

Get ProjectEquipment collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_subproject\_project\_equipment\_group\_collection

Get ProjectEquipmentGroup collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_subproject\_project\_function\_group\_collection

Get ProjectFunctionGroup collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>

***

## rentman\_projects\_get\_subproject\_project\_vehicle\_collection

Get ProjectVehicle collection.

**Parameters:**

| Parameter | Type    | Required | Default | Description                |
| --------- | ------- | -------- | ------- | -------------------------- |
| `id`      | integer | Yes      | —       | Numeric ID of the itemtype |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "id": {
        "type": "integer",
        "description": "Numeric ID of the itemtype"
      }
    },
    "required": [
      "PCID",
      "id"
    ]
  }
  ```
</Expandable>
