> ## 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.

# freshservice-changes

> Freshservice Changes — manage change requests, notes, tasks, time entries, and approvals

**Server path:** `/freshservice-changes` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                              | Description                  |
| ------------------------------------------------------------------------------------------------- | ---------------------------- |
| [`freshservice_changes_cancel_change_approval`](#freshservice_changes_cancel_change_approval)     | Cancel a Change Approval     |
| [`freshservice_changes_create_change`](#freshservice_changes_create_change)                       | Create a Change              |
| [`freshservice_changes_create_change_note`](#freshservice_changes_create_change_note)             | Create a Change Note         |
| [`freshservice_changes_create_change_task`](#freshservice_changes_create_change_task)             | Create a Change Task         |
| [`freshservice_changes_create_change_time_entry`](#freshservice_changes_create_change_time_entry) | Create a Change Time Entry   |
| [`freshservice_changes_delete_change`](#freshservice_changes_delete_change)                       | Delete a Change              |
| [`freshservice_changes_delete_change_note`](#freshservice_changes_delete_change_note)             | Delete a Change Note         |
| [`freshservice_changes_delete_change_task`](#freshservice_changes_delete_change_task)             | Delete a Change Task         |
| [`freshservice_changes_delete_change_time_entry`](#freshservice_changes_delete_change_time_entry) | Delete a Change Time Entry   |
| [`freshservice_changes_get_change`](#freshservice_changes_get_change)                             | View a Change                |
| [`freshservice_changes_get_change_approval`](#freshservice_changes_get_change_approval)           | View a Change Approval       |
| [`freshservice_changes_get_change_note`](#freshservice_changes_get_change_note)                   | View a Change Note           |
| [`freshservice_changes_get_change_task`](#freshservice_changes_get_change_task)                   | View a Change Task           |
| [`freshservice_changes_get_change_time_entry`](#freshservice_changes_get_change_time_entry)       | View a Change Time Entry     |
| [`freshservice_changes_list_change_fields`](#freshservice_changes_list_change_fields)             | List All Change Fields       |
| [`freshservice_changes_list_change_notes`](#freshservice_changes_list_change_notes)               | List All Change Notes        |
| [`freshservice_changes_list_change_tasks`](#freshservice_changes_list_change_tasks)               | List All Change Tasks        |
| [`freshservice_changes_list_change_time_entries`](#freshservice_changes_list_change_time_entries) | List All Change Time Entries |
| [`freshservice_changes_list_changes`](#freshservice_changes_list_changes)                         | List All Changes             |
| [`freshservice_changes_update_change`](#freshservice_changes_update_change)                       | Update a Change              |
| [`freshservice_changes_update_change_note`](#freshservice_changes_update_change_note)             | Update a Change Note         |
| [`freshservice_changes_update_change_task`](#freshservice_changes_update_change_task)             | Update a Change Task         |
| [`freshservice_changes_update_change_time_entry`](#freshservice_changes_update_change_time_entry) | Update a Change Time Entry   |

***

## freshservice\_changes\_cancel\_change\_approval

Cancel a Change Approval

**Parameters:**

| Parameter     | Type    | Required | Default | Description |
| ------------- | ------- | -------- | ------- | ----------- |
| `change_id`   | integer | Yes      | —       | Change ID   |
| `approval_id` | integer | Yes      | —       | Approval ID |

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

***

## freshservice\_changes\_create\_change

Create a Change

**Parameters:**

| Parameter            | Type      | Required | Default | Description                                                                   |
| -------------------- | --------- | -------- | ------- | ----------------------------------------------------------------------------- |
| `agent_id`           | integer   | No       | —       | Assigned agent                                                                |
| `assets`             | object\[] | No       | —       | Associated assets                                                             |
| `category`           | string    | No       | —       | The category value                                                            |
| `change_type`        | integer   | No       | —       | 1=Minor, 2=Standard, 3=Major, 4=Emergency                                     |
| `custom_fields`      | object    | No       | —       | Custom fields                                                                 |
| `department_id`      | integer   | No       | —       | Department                                                                    |
| `description`        | string    | No       | —       | HTML description                                                              |
| `group_id`           | integer   | No       | —       | Assigned group                                                                |
| `impact`             | integer   | No       | —       | 1=Low, 2=Medium, 3=High                                                       |
| `planned_end_date`   | string    | No       | —       | Planned end (ISO 8601)                                                        |
| `planned_start_date` | string    | No       | —       | Planned start (ISO 8601)                                                      |
| `priority`           | integer   | No       | —       | 1=Low, 2=Medium, 3=High, 4=Urgent                                             |
| `requester_id`       | integer   | Yes      | —       | Initiator ID                                                                  |
| `risk`               | integer   | No       | —       | Risk level                                                                    |
| `status`             | integer   | No       | —       | 1=Open, 2=Planning, 3=Approval, 4=Pending Release, 5=Pending Review, 6=Closed |
| `sub_category`       | string    | No       | —       | Sub-category                                                                  |
| `subject`            | string    | Yes      | —       | The subject value                                                             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "agent_id": {
        "type": "integer",
        "description": "Assigned agent"
      },
      "assets": {
        "type": "array",
        "items": {
          "type": "object"
        },
        "description": "Associated assets"
      },
      "category": {
        "type": "string",
        "description": "The category value"
      },
      "change_type": {
        "type": "integer",
        "description": "1=Minor, 2=Standard, 3=Major, 4=Emergency"
      },
      "custom_fields": {
        "type": "object",
        "description": "Custom fields"
      },
      "department_id": {
        "type": "integer",
        "description": "Department"
      },
      "description": {
        "type": "string",
        "description": "HTML description"
      },
      "group_id": {
        "type": "integer",
        "description": "Assigned group"
      },
      "impact": {
        "type": "integer",
        "description": "1=Low, 2=Medium, 3=High"
      },
      "planned_end_date": {
        "type": "string",
        "description": "Planned end (ISO 8601)"
      },
      "planned_start_date": {
        "type": "string",
        "description": "Planned start (ISO 8601)"
      },
      "priority": {
        "type": "integer",
        "description": "1=Low, 2=Medium, 3=High, 4=Urgent"
      },
      "requester_id": {
        "type": "integer",
        "description": "Initiator ID"
      },
      "risk": {
        "type": "integer",
        "description": "Risk level"
      },
      "status": {
        "type": "integer",
        "description": "1=Open, 2=Planning, 3=Approval, 4=Pending Release, 5=Pending Review, 6=Closed"
      },
      "sub_category": {
        "type": "string",
        "description": "Sub-category"
      },
      "subject": {
        "type": "string",
        "description": "The subject value"
      }
    },
    "required": [
      "PCID",
      "requester_id",
      "subject"
    ]
  }
  ```
</Expandable>

***

## freshservice\_changes\_create\_change\_note

Create a Change Note

**Parameters:**

| Parameter       | Type      | Required | Default | Description      |
| --------------- | --------- | -------- | ------- | ---------------- |
| `change_id`     | integer   | Yes      | —       | Change ID        |
| `body`          | string    | Yes      | —       | Note HTML body   |
| `notify_emails` | string\[] | No       | —       | Emails to notify |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "change_id": {
        "type": "integer",
        "description": "Change ID"
      },
      "body": {
        "type": "string",
        "description": "Note HTML body"
      },
      "notify_emails": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Emails to notify"
      }
    },
    "required": [
      "PCID",
      "change_id",
      "body"
    ]
  }
  ```
</Expandable>

***

## freshservice\_changes\_create\_change\_task

Create a Change Task

**Parameters:**

| Parameter       | Type    | Required | Default | Description                        |
| --------------- | ------- | -------- | ------- | ---------------------------------- |
| `change_id`     | integer | Yes      | —       | Change ID                          |
| `agent_id`      | integer | No       | —       | Assigned agent ID                  |
| `description`   | string  | No       | —       | Task description                   |
| `due_date`      | string  | No       | —       | Due date (ISO 8601)                |
| `group_id`      | integer | No       | —       | Assigned group ID                  |
| `notify_before` | integer | No       | —       | Seconds before due date to notify  |
| `status`        | integer | No       | —       | 1=Open, 2=In Progress, 3=Completed |
| `title`         | string  | Yes      | —       | Task title                         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "change_id": {
        "type": "integer",
        "description": "Change ID"
      },
      "agent_id": {
        "type": "integer",
        "description": "Assigned agent ID"
      },
      "description": {
        "type": "string",
        "description": "Task description"
      },
      "due_date": {
        "type": "string",
        "description": "Due date (ISO 8601)"
      },
      "group_id": {
        "type": "integer",
        "description": "Assigned group ID"
      },
      "notify_before": {
        "type": "integer",
        "description": "Seconds before due date to notify"
      },
      "status": {
        "type": "integer",
        "description": "1=Open, 2=In Progress, 3=Completed"
      },
      "title": {
        "type": "string",
        "description": "Task title"
      }
    },
    "required": [
      "PCID",
      "change_id",
      "title"
    ]
  }
  ```
</Expandable>

***

## freshservice\_changes\_create\_change\_time\_entry

Create a Change Time Entry

**Parameters:**

| Parameter     | Type    | Required | Default | Description                   |
| ------------- | ------- | -------- | ------- | ----------------------------- |
| `change_id`   | integer | Yes      | —       | Change ID                     |
| `agent_id`    | integer | Yes      | —       | Agent ID (mandatory)          |
| `billable`    | boolean | No       | —       | Billable entry (default true) |
| `executed_at` | string  | No       | —       | When work was done (ISO 8601) |
| `note`        | string  | No       | —       | Description of work           |
| `start_time`  | string  | No       | —       | Start time (ISO 8601)         |
| `task_id`     | integer | No       | —       | Associated task ID            |
| `time_spent`  | string  | No       | —       | Time spent in hh:mm format    |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "change_id": {
        "type": "integer",
        "description": "Change ID"
      },
      "agent_id": {
        "type": "integer",
        "description": "Agent ID (mandatory)"
      },
      "billable": {
        "type": "boolean",
        "description": "Billable entry (default true)"
      },
      "executed_at": {
        "type": "string",
        "description": "When work was done (ISO 8601)"
      },
      "note": {
        "type": "string",
        "description": "Description of work"
      },
      "start_time": {
        "type": "string",
        "description": "Start time (ISO 8601)"
      },
      "task_id": {
        "type": "integer",
        "description": "Associated task ID"
      },
      "time_spent": {
        "type": "string",
        "description": "Time spent in hh:mm format"
      }
    },
    "required": [
      "PCID",
      "change_id",
      "agent_id"
    ]
  }
  ```
</Expandable>

***

## freshservice\_changes\_delete\_change

Delete a Change

**Parameters:**

| Parameter   | Type    | Required | Default | Description |
| ----------- | ------- | -------- | ------- | ----------- |
| `change_id` | integer | Yes      | —       | Change ID   |

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

***

## freshservice\_changes\_delete\_change\_note

Delete a Change Note

**Parameters:**

| Parameter   | Type    | Required | Default | Description |
| ----------- | ------- | -------- | ------- | ----------- |
| `change_id` | integer | Yes      | —       | Change ID   |
| `note_id`   | integer | Yes      | —       | Note ID     |

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

***

## freshservice\_changes\_delete\_change\_task

Delete a Change Task

**Parameters:**

| Parameter   | Type    | Required | Default | Description |
| ----------- | ------- | -------- | ------- | ----------- |
| `change_id` | integer | Yes      | —       | Change ID   |
| `task_id`   | integer | Yes      | —       | Task ID     |

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

***

## freshservice\_changes\_delete\_change\_time\_entry

Delete a Change Time Entry

**Parameters:**

| Parameter       | Type    | Required | Default | Description   |
| --------------- | ------- | -------- | ------- | ------------- |
| `change_id`     | integer | Yes      | —       | Change ID     |
| `time_entry_id` | integer | Yes      | —       | Time Entry ID |

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

***

## freshservice\_changes\_get\_change

View a Change

**Parameters:**

| Parameter   | Type    | Required | Default | Description |
| ----------- | ------- | -------- | ------- | ----------- |
| `change_id` | integer | Yes      | —       | Change ID   |

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

***

## freshservice\_changes\_get\_change\_approval

View a Change Approval

**Parameters:**

| Parameter     | Type    | Required | Default | Description |
| ------------- | ------- | -------- | ------- | ----------- |
| `change_id`   | integer | Yes      | —       | Change ID   |
| `approval_id` | integer | Yes      | —       | Approval ID |

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

***

## freshservice\_changes\_get\_change\_note

View a Change Note

**Parameters:**

| Parameter   | Type    | Required | Default | Description |
| ----------- | ------- | -------- | ------- | ----------- |
| `change_id` | integer | Yes      | —       | Change ID   |
| `note_id`   | integer | Yes      | —       | Note ID     |

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

***

## freshservice\_changes\_get\_change\_task

View a Change Task

**Parameters:**

| Parameter   | Type    | Required | Default | Description |
| ----------- | ------- | -------- | ------- | ----------- |
| `change_id` | integer | Yes      | —       | Change ID   |
| `task_id`   | integer | Yes      | —       | Task ID     |

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

***

## freshservice\_changes\_get\_change\_time\_entry

View a Change Time Entry

**Parameters:**

| Parameter       | Type    | Required | Default | Description   |
| --------------- | ------- | -------- | ------- | ------------- |
| `change_id`     | integer | Yes      | —       | Change ID     |
| `time_entry_id` | integer | Yes      | —       | Time Entry ID |

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

***

## freshservice\_changes\_list\_change\_fields

List All Change Fields

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

***

## freshservice\_changes\_list\_change\_notes

List All Change Notes

**Parameters:**

| Parameter   | Type    | Required | Default | Description              |
| ----------- | ------- | -------- | ------- | ------------------------ |
| `change_id` | integer | Yes      | —       | Change ID                |
| `page`      | integer | No       | —       | Page number              |
| `per_page`  | integer | No       | —       | Items per page (max 100) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "change_id": {
        "type": "integer",
        "description": "Change ID"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "per_page": {
        "type": "integer",
        "description": "Items per page (max 100)"
      }
    },
    "required": [
      "PCID",
      "change_id"
    ]
  }
  ```
</Expandable>

***

## freshservice\_changes\_list\_change\_tasks

List All Change Tasks

**Parameters:**

| Parameter   | Type    | Required | Default | Description              |
| ----------- | ------- | -------- | ------- | ------------------------ |
| `change_id` | integer | Yes      | —       | Change ID                |
| `page`      | integer | No       | —       | Page number              |
| `per_page`  | integer | No       | —       | Items per page (max 100) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "change_id": {
        "type": "integer",
        "description": "Change ID"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "per_page": {
        "type": "integer",
        "description": "Items per page (max 100)"
      }
    },
    "required": [
      "PCID",
      "change_id"
    ]
  }
  ```
</Expandable>

***

## freshservice\_changes\_list\_change\_time\_entries

List All Change Time Entries

**Parameters:**

| Parameter   | Type    | Required | Default | Description              |
| ----------- | ------- | -------- | ------- | ------------------------ |
| `change_id` | integer | Yes      | —       | Change ID                |
| `page`      | integer | No       | —       | Page number              |
| `per_page`  | integer | No       | —       | Items per page (max 100) |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "change_id": {
        "type": "integer",
        "description": "Change ID"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "per_page": {
        "type": "integer",
        "description": "Items per page (max 100)"
      }
    },
    "required": [
      "PCID",
      "change_id"
    ]
  }
  ```
</Expandable>

***

## freshservice\_changes\_list\_changes

List All Changes

**Parameters:**

| Parameter       | Type    | Required | Default | Description              |
| --------------- | ------- | -------- | ------- | ------------------------ |
| `page`          | integer | No       | —       | Page number              |
| `per_page`      | integer | No       | —       | Items per page (max 100) |
| `filter`        | string  | No       | —       | Predefined filter        |
| `updated_since` | string  | No       | —       | Filter by update time    |
| `workspace_id`  | integer | No       | —       | Workspace                |
| `include`       | string  | No       | —       | Include stats            |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "page": {
        "type": "integer",
        "description": "Page number"
      },
      "per_page": {
        "type": "integer",
        "description": "Items per page (max 100)"
      },
      "filter": {
        "type": "string",
        "description": "Predefined filter"
      },
      "updated_since": {
        "type": "string",
        "description": "Filter by update time"
      },
      "workspace_id": {
        "type": "integer",
        "description": "Workspace"
      },
      "include": {
        "type": "string",
        "description": "Include stats"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## freshservice\_changes\_update\_change

Update a Change

**Parameters:**

| Parameter            | Type    | Required | Default | Description           |
| -------------------- | ------- | -------- | ------- | --------------------- |
| `change_id`          | integer | Yes      | —       | Change ID             |
| `agent_id`           | integer | No       | —       | Agent                 |
| `change_type`        | integer | No       | —       | Type                  |
| `custom_fields`      | object  | No       | —       | Custom fields         |
| `description`        | string  | No       | —       | The description value |
| `group_id`           | integer | No       | —       | Group                 |
| `impact`             | integer | No       | —       | The impact value      |
| `planned_end_date`   | string  | No       | —       | End                   |
| `planned_start_date` | string  | No       | —       | Start                 |
| `priority`           | integer | No       | —       | The priority value    |
| `risk`               | integer | No       | —       | The risk value        |
| `status`             | integer | No       | —       | The status value      |
| `subject`            | string  | No       | —       | The subject value     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "change_id": {
        "type": "integer",
        "description": "Change ID"
      },
      "agent_id": {
        "type": "integer",
        "description": "Agent"
      },
      "change_type": {
        "type": "integer",
        "description": "Type"
      },
      "custom_fields": {
        "type": "object",
        "description": "Custom fields"
      },
      "description": {
        "type": "string",
        "description": "The description value"
      },
      "group_id": {
        "type": "integer",
        "description": "Group"
      },
      "impact": {
        "type": "integer",
        "description": "The impact value"
      },
      "planned_end_date": {
        "type": "string",
        "description": "End"
      },
      "planned_start_date": {
        "type": "string",
        "description": "Start"
      },
      "priority": {
        "type": "integer",
        "description": "The priority value"
      },
      "risk": {
        "type": "integer",
        "description": "The risk value"
      },
      "status": {
        "type": "integer",
        "description": "The status value"
      },
      "subject": {
        "type": "string",
        "description": "The subject value"
      }
    },
    "required": [
      "PCID",
      "change_id"
    ]
  }
  ```
</Expandable>

***

## freshservice\_changes\_update\_change\_note

Update a Change Note

**Parameters:**

| Parameter   | Type    | Required | Default | Description  |
| ----------- | ------- | -------- | ------- | ------------ |
| `change_id` | integer | Yes      | —       | Change ID    |
| `note_id`   | integer | Yes      | —       | Note ID      |
| `body`      | string  | No       | —       | Updated body |

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

***

## freshservice\_changes\_update\_change\_task

Update a Change Task

**Parameters:**

| Parameter     | Type    | Required | Default | Description           |
| ------------- | ------- | -------- | ------- | --------------------- |
| `change_id`   | integer | Yes      | —       | Change ID             |
| `task_id`     | integer | Yes      | —       | Task ID               |
| `agent_id`    | integer | No       | —       | Assigned agent        |
| `description` | string  | No       | —       | The description value |
| `due_date`    | string  | No       | —       | Due date              |
| `group_id`    | integer | No       | —       | Assigned group        |
| `status`      | integer | No       | —       | The status value      |
| `title`       | string  | No       | —       | The title value       |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "change_id": {
        "type": "integer",
        "description": "Change ID"
      },
      "task_id": {
        "type": "integer",
        "description": "Task ID"
      },
      "agent_id": {
        "type": "integer",
        "description": "Assigned agent"
      },
      "description": {
        "type": "string",
        "description": "The description value"
      },
      "due_date": {
        "type": "string",
        "description": "Due date"
      },
      "group_id": {
        "type": "integer",
        "description": "Assigned group"
      },
      "status": {
        "type": "integer",
        "description": "The status value"
      },
      "title": {
        "type": "string",
        "description": "The title value"
      }
    },
    "required": [
      "PCID",
      "change_id",
      "task_id"
    ]
  }
  ```
</Expandable>

***

## freshservice\_changes\_update\_change\_time\_entry

Update a Change Time Entry

**Parameters:**

| Parameter       | Type    | Required | Default | Description        |
| --------------- | ------- | -------- | ------- | ------------------ |
| `change_id`     | integer | Yes      | —       | Change ID          |
| `time_entry_id` | integer | Yes      | —       | Time Entry ID      |
| `agent_id`      | integer | No       | —       | Agent ID           |
| `billable`      | boolean | No       | —       | The billable value |
| `executed_at`   | string  | No       | —       | Execution time     |
| `note`          | string  | No       | —       | Description        |
| `time_spent`    | string  | No       | —       | Time in hh:mm      |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "change_id": {
        "type": "integer",
        "description": "Change ID"
      },
      "time_entry_id": {
        "type": "integer",
        "description": "Time Entry ID"
      },
      "agent_id": {
        "type": "integer",
        "description": "Agent ID"
      },
      "billable": {
        "type": "boolean",
        "description": "The billable value"
      },
      "executed_at": {
        "type": "string",
        "description": "Execution time"
      },
      "note": {
        "type": "string",
        "description": "Description"
      },
      "time_spent": {
        "type": "string",
        "description": "Time in hh:mm"
      }
    },
    "required": [
      "PCID",
      "change_id",
      "time_entry_id"
    ]
  }
  ```
</Expandable>
