---
title: "Update Task Metadata"
method: PUT
path: "/v1/task/{taskId}"
tags: ["Tasks"]
---

# Update Task Metadata

`PUT /v1/task/{taskId}`

Updates task metadata (name and description). This does not affect the task code or versions.

## Path parameters

- `taskId` string, uuid, required

## Request body

- UpdateTaskMetadataRequest
  - `name` string — Task name (letters, numbers, hyphens, and underscores only)
  - `description` string — Optional description of the task

## Response `200`

Task metadata updated successfully

- TaskMetadataResponse
  - `data` TaskMetadata
    - `id` string, uuid, required — Unique identifier for the task
    - `name` string, required — Task name
    - `teamId` string, uuid, required — Team identifier that owns this task
    - `description` string — Optional description of the task
    - `latest` string, required — Latest version identifier
    - `deleted` boolean, required — Whether the task is soft deleted
    - `createdAt` string, date-time, required — Task creation timestamp
    - `updatedAt` string, date-time, required — Task last update timestamp

## Other responses

- `404` — Task not found
- `409` — Task name already exists
- `500` — Failed to update task

## Changes

- **2025-10-20** `918bcdcb6208` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/anchorbrowser/apis/anchorbrowser-api/changes/v1/task/:taskId/put.md)

---

[API](https://skmtc.dev/anchorbrowser/apis/anchorbrowser-api.md) · [All operations](https://skmtc.dev/anchorbrowser/apis/anchorbrowser-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/anchorbrowser/anchorbrowser-api/revisions/8f77fa55fe1f/schema)
