v52

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
cloudfs filesystems

Update a CloudFS filesystem

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.

patch/storage/cloudfs/{id}

Path parameters

idstring uuid required

CloudFS filesystem ID

Request body

namestring

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

Example request

{
  "name": "agent-fs"
}

Response

CloudFS filesystem updated successfully

Example response

{
  "data": {
    "created_at": "2026-07-14T21:42:01Z",
    "error": "failed to create storage bucket",
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "meta_url": "postgres://fs_0123456789abcdef@us-east-1.telnyxcloudfs.com:5432/fs_0123456789abcdef?sslmode=require",
    "name": "agent-fs",
    "record_type": "cloudfs",
    "region": "us-east-1",
    "s3_bucket": "cloudfs-fs-0123456789abcdef",
    "s3_endpoint": "https://us-east-1.telnyxcloudstorage.com",
    "status": "ready",
    "updated_at": "2026-07-14T21:42:01Z"
  }
}