Projekty

Update a project

PATCH
/cloud/project/{uuid}/

Updates the project name and/or description. The cluster cannot be changed. Only the project owner (superadmin) can update a project. Write access is also blocked when the owner's account is on hold or card verification is still required.

Authorization

bearerAuth
AuthorizationBearer <token>

API key created in the portal (Settings → API Keys). Send as Authorization: Bearer <key>.

In: header

Path Parameters

uuid*string

Project UUID.

Request Body

TypeScript Definitions

Use the request body type in TypeScript.

Project name and description (the only fields that can be changed).

Response Body

application/json

curl -X PATCH "https://example.com/cloud/project/string/" \  -H "Content-Type: application/json" \  -d '{}'
{  "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",  "name": "string",  "description": "string",  "cluster": "string",  "cluster_location": "string",  "role": "string",  "limit": {    "max_cores": 0,    "max_sdn_lan_bridges": 0,    "max_cores_per_vm": 0,    "max_backup_jobs": 0  },  "price_model": {    "vcore_regular": "string",    "vcore_light": "string",    "ram": "string",    "storage_fast": "string",    "public_ip": "string",    "private_network_tag": "string",    "private_network_external_vlan": "string",    "cloud_gateway_standard": "string"  }}