---
title: "Update resource — GanttFather API"
description: "Partial update — only the fields you send change."
canonical: "https://ganttfather.com/docs/api/update-resource/"
locale: "en"
category: "product"
---

# Update resource — GanttFather API

API reference [AI assistants (MCP)](https://ganttfather.com/docs/ai-agent/)

## Getting started

- [Introduction](https://ganttfather.com/docs/api/introduction/)
- [Authentication](https://ganttfather.com/docs/api/authentication/)
- [Pagination](https://ganttfather.com/docs/api/pagination/)
- [Rate limits & quotas](https://ganttfather.com/docs/api/rate-limits/)
- [Errors](https://ganttfather.com/docs/api/errors/)

## Projects

- [GET List projects](https://ganttfather.com/docs/api/list-projects/)
- [GET Get project](https://ganttfather.com/docs/api/get-project/)

## Tasks

- [GET List tasks](https://ganttfather.com/docs/api/list-tasks/)
- [GET Get task](https://ganttfather.com/docs/api/get-task/)
- [POST Create task](https://ganttfather.com/docs/api/create-task/)
- [PATCH Update task](https://ganttfather.com/docs/api/update-task/)
- [DELETE Delete task](https://ganttfather.com/docs/api/delete-task/)
- [POST Reorder tasks](https://ganttfather.com/docs/api/reorder-tasks/)
- [PUT Set assignees](https://ganttfather.com/docs/api/set-assignees/)

## Dependencies

- [GET List dependencies](https://ganttfather.com/docs/api/list-dependencies/)
- [PUT Set dependencies](https://ganttfather.com/docs/api/set-dependencies/)
- [POST Add dependency](https://ganttfather.com/docs/api/add-dependency/)
- [DELETE Remove dependency](https://ganttfather.com/docs/api/remove-dependency/)

## Resources

- [GET List resources](https://ganttfather.com/docs/api/list-resources/)
- [POST Create resource](https://ganttfather.com/docs/api/create-resource/)
- [PATCH Update resource](https://ganttfather.com/docs/api/update-resource/)
- [DELETE Delete resource](https://ganttfather.com/docs/api/delete-resource/)

## Members

- [GET List members](https://ganttfather.com/docs/api/list-members/)

 Resources / **Update resource**

# Update resource

 PATCH

 Updated Jul 4, 2026

 Partially updates a resource. Only provided fields change.

 On success the API returns 200 OK with the updated resource body.

## Path parameters

 Name Type Required Description

 resourceId string (uuid) Yes The resource to update.

## Request body

 All fields optional — send only what changes.

 Name Type Description

 name string Resource name.

 costType string Hour / Use / Flat . An unparseable value is silently skipped rather than rejected.

 costValue number Cost amount.

 color string #RRGGBB .

 initials string Short label shown on chips.

 curl -X PATCH https://api.ganttfather.com/v1/resources/{resourceId} \
 -H "Authorization: Bearer glt_YOUR_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{ "costValue": 25 }'

 Response 200 OK

 {
 "id": "0198f1a2-5555-7c9e-9a1f-2d4e5f6a7b8c",
 "name": "Conference room A (booked)",
 "type": "Virtual",
 "costType": "Hour",
 "costValue": 25,
 "initials": "CR",
 "color": "#36558F"
}

 Rather not write REST?

## Connect an AI assistant instead.

 [Explore MCP setup →](https://ganttfather.com/docs/ai-agent/)
