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

# Update Task

> Update a task's fields.

## Path Parameters

<ParamField path="id" type="string" required>
  Task ID.
</ParamField>

## Body

Any fields from [Create Task](/api-reference/tasks/create) can be partially updated.

<RequestExample>
  ```bash cURL theme={null}
  curl -X PATCH http://localhost:3000/api/v1/tasks/clxyz789 \
    -H "Authorization: Bearer <token>" \
    -H "Content-Type: application/json" \
    -d '{"status": "IN_PROGRESS"}'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "clxyz789",
    "title": "Implement login",
    "status": "IN_PROGRESS",
    "priority": "HIGH"
  }
  ```
</ResponseExample>
