---
title: "Update an Application"
method: PUT
path: "/workspace/applications/{application_id}"
tags: ["Applications"]
---

# Update an Application

`PUT /workspace/applications/{application_id}`

Update an existing Application. This replaces the entire Application with the new data provided.

## Path parameters

- `application_id` integer, required

## Request body

- ApplicationRequest
  - `name` string, required
  - `modules` ApplicationModulesRequest
    - `cache` CacheModuleRequest
      - `enabled` boolean
    - `functions` FunctionModuleRequest
      - `enabled` boolean
    - `application_accelerator` ApplicationAcceleratorModuleRequest
      - `enabled` boolean
    - `image_processor` ImageProcessorModuleRequest
      - `enabled` boolean
  - `active` boolean
  - `debug` boolean

## Response `200`

Application updated successfully.

- ApplicationResponse
  - `state` string
  - `data` Application, required
    - `id` integer, required
    - `name` string, required
    - `last_editor` string, required
    - `last_modified` string, date-time, required
    - `modules` ApplicationModules
      - `cache` CacheModule
        - `enabled` boolean
      - `functions` FunctionModule
        - `enabled` boolean
      - `application_accelerator` ApplicationAcceleratorModule
        - `enabled` boolean
      - `image_processor` ImageProcessorModule
        - `enabled` boolean
    - `active` boolean
    - `debug` boolean
    - `product_version` string, required

## Other responses

- `400` — Validation Error
- `401` — Authentication Failed
- `403` — Permission Denied
- `404` — Not Found
- `405` — Method Not Allowed
- `406` — Not Acceptable
- `429` — Throttled
- `500` — Internal Server Error

---

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