---
title: "Update a CloudFS filesystem"
method: PATCH
path: "/storage/cloudfs/{id}"
tags: ["cloudfs filesystems"]
---

# Update a CloudFS filesystem

`PATCH /storage/cloudfs/{id}`

Updates a CloudFS filesystem. Only `name` can be changed; other fields are immutable and unknown fields are rejected with a `400`. Renaming to a name that already exists in your organization returns a `422`.

## Path parameters

- `id` string, uuid, required

## Request body

- UpdateCloudfsFilesystemRequest
  - `name` string — New filesystem name, unique within your organization. Names are trimmed and lowercased; after normalization they may contain lowercase letters, numbers, `.`, `_`, and `-` only.

## Response `200`

CloudFS filesystem updated successfully

- CloudfsFilesystemDetailResponseWrapper
  - `data` CloudfsFilesystemDetail — A CloudFS filesystem as returned by get, update, and delete. `meta_url` omits the credential and there is no `meta_token` field — the token is only returned by create and rotate-meta-token.
    - `created_at` string, date-time
    - `error` string — Explanation of the most recent failed lifecycle action. Present only when the filesystem is in a `failed` state.
    - `id` string, uuid
    - `meta_url` string — PostgreSQL connection URL for the filesystem's metadata database, without the credential. Combine it with your stored metadata token, or issue a new token with rotate-meta-token.
    - `name` string
    - `record_type` string
    - `region` string
    - `s3_bucket` string — Name of the bucket that stores this filesystem's data. Created during provisioning.
    - `s3_endpoint` string — URL of the Telnyx Cloud Storage endpoint backing this filesystem.
    - `status` 'provisioning' | 'ready' | 'needs_format' | 'deleting' | 'failed' | 'deleted' — Lifecycle status of the filesystem. `ready` means it is fully provisioned and usable. `needs_format` means the storage bucket and metadata database were provisioned but the filesystem has not yet been formatted — run `juicefs format` with the filesystem's `meta_url` before mounting. `failed` means the last lifecycle action failed — see the filesystem's `error` message. `deleted` appears only in the delete response: deleted filesystems are excluded from list results and return a `404` on retrieval.
    - `updated_at` string, date-time

## Other responses

- `400` — Bad request — malformed JSON, unknown or immutable field, or missing body
- `401` — Unauthorized
- `404` — CloudFS filesystem not found
- `422` — Unprocessable entity — `id` is not a valid UUID, the new `name` is invalid, or a filesystem with that name already exists
- `500` — Internal server error

## Changes

- **2026-08-17** `1571b0380bd7` — 12 breaking, 4 info
  - the response property `errors/items/code` became optional for the status `400`
  - the response property `errors/items/code` became optional for the status `401`
  - the response property `errors/items/code` became optional for the status `404`
  - the response property `errors/items/code` became optional for the status `422`
  - …12 more
- **2026-08-04** `8f5f4e537994` — 4 breaking, 4 warning, 8 info
  - the `errors/items/code` response's property type/format changed from `string`/`` to `integer`/`int32` for status `400`
  - the `errors/items/code` response's property type/format changed from `string`/`` to `integer`/`int32` for status `401`
  - the `errors/items/code` response's property type/format changed from `string`/`` to `integer`/`int32` for status `404`
  - the `errors/items/code` response's property type/format changed from `string`/`` to `integer`/`int32` for status `422`
  - …12 more
- **2026-07-23** `eb02d7e7280b` — 1 info
  - the endpoint scheme security `bearerAuth` was removed from the API
- **2026-07-15** `dcc7fe8a21b6` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/changes/storage/cloudfs/:id/patch.md)

---

[API](https://skmtc.dev/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/team-telnyx/telnyx-api-2/revisions/7e46ea05fa0c/schema)
