> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.meetgail.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.meetgail.com/_mcp/server.

# AgencyZoom Update Task

> Changes fields on an existing AgencyZoom task, touching only the fields you set.

The Update Task node changes an existing task in AgencyZoom by its id. It is a
partial update: it only touches the fields you set and leaves the rest alone. You
can also set the task's status to open or done.

## When to use it

* You want to change a task's title, due time, assignee, or notes.
* You want to reassign a task or reschedule it as a run progresses.
* You want to change other fields and mark the task done in the same step.

## Inputs

| Field             | What it's for                                       | Example                            |
| ----------------- | --------------------------------------------------- | ---------------------------------- |
| Task              | The task to update, identified by its id. Required. | `12345`                            |
| Status            | Set the task to open or done.                       | `done`                             |
| Task title        | A new title for the task.                           | `Call Sarah Chen - rescheduled`    |
| Due date and time | A new due time.                                     | `2026-02-03 14:00:00`              |
| Assignee          | A new user to assign the task to.                   | A user id                          |
| Comments          | Updated notes for the task.                         | `Rescheduled at customer request.` |
| Task kind         | A new action kind: to-do, email, call, or meeting.  | `meeting`                          |

Only the task id is required; set only the fields you want to change. Any field can
be a fixed value or an [expression](/platform/workflows/core-concepts/expressions/using-expressions-in-nodes)
that reads from an earlier step.

## Outputs

On success the node returns a confirmation that the task was updated.

## Example

A customer asks to move a call, so a workflow uses Update Task with the task's id to
change only its due time to the new slot, leaving the title, assignee, and notes as
they were. Because it is a partial update, nothing else on the task changes.

![The AgencyZoom Update Task node configuration panel, showing the task id and the fields to change.](https://fdr-prod-docs-files-public.s3.us-east-1.amazonaws.com/gail.docs.buildwithfern.com/be8f264f2e77d4d19efeb7ed1e27d0cdbdcd971c012f25f2ba5e9f924fefdbf8/docs/pages/platform/workflows/assets/agencyzoom-update-task.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA6KXJSKKNFOCF7G4B%2F20260823%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260823T233039Z&X-Amz-Expires=604800&X-Amz-Signature=250b502c702444a366ef1355d5c548c57bbbb5ec98e5fc0b5ce6f490cba36a5a&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject)

Update Task only touches the fields you set, so it is safe for small changes. To
simply mark a task done, prefer
[Complete Task](/platform/workflows/node-reference/integrations/agencyzoom/agency-zoom-complete-task) -
it records who completed it and when. Use a status of done here only when you are
already changing other fields in the same step.

## Related nodes

#### [Complete Task](/platform/workflows/node-reference/integrations/agencyzoom/agency-zoom-complete-task)

Mark a task done without changing other fields.

#### [Create Task](/platform/workflows/node-reference/integrations/agencyzoom/agency-zoom-create-task)

Create a new task.

#### [Search Tasks](/platform/workflows/node-reference/integrations/agencyzoom/agency-zoom-search-tasks)

Find the task to update.