v1

latestOpenAPI 3.0.42026-07-26263457588.1 KB
Applications

Patch Application

Partially updates an existing application using JSON Merge Patch semantics. Only provided fields will be updated; existing fields not included in the request will remain unchanged. For arrays (containers, volumes, endpoints), items with matching IDs will be updated, items without IDs will be added as new, and items not included will be deleted.

patch/apps/{appId}

Path parameters

appIdstring required

The ID of the application to update

Request body

namestring nullable
runtimeType'shared' | 'reserved'

Example request

{
  "autoScaling": {
    "min": 1,
    "max": 10
  },
  "regionSettings": {
    "allowedRegionIds": [
      "DE",
      "UK",
      "US"
    ],
    "requiredRegionIds": [
      "DE"
    ],
    "maxAllowedRegions": 5
  },
  "volumes": [
    {
      "size": 5
    }
  ]
}

Response

Application was successfully updated.

idstring