---
title: "Update a Application"
method: PUT
path: "/applications/{owner}/{slug}"
tags: ["Applications"]
---

# Update a Application

`PUT /applications/{owner}/{slug}`

## Path parameters

- `owner` string, required
- `slug` string, required

## Request body

- ApplicationUpdate
  - `description` string — A description of the application
  - `public` boolean — Whether or not a application is publicly viewable
  - `keywords` string[] — A list of keywords associated with the application
  - `source` string — A link to the source code of the application
  - `license` string — The license of the application
  - `is_paid` boolean — Whether or not the application is paid
  - `deployment_config` DeploymentConfigUpdate
    - `login_required` boolean — Whether the application requires login.
    - `cpu_limit` integer — The maximum number of CPU cores that can be used by the application.
    - `memory_limit` integer — The maximum amount of memory that can be used by the application.
    - `scale_to_zero` boolean — A boolean toggle to scale deployments down to zero replicas when not used.
    - `entrypoint_file` string — The Streamlit python file to use as an entrypoint to the app

## Response `202`

Accepted

- UpdateAccepted — Accepted request response for existing resource
  - `status` string

## Other responses

- `400` — Invalid request
- `403` — Access forbidden
- `404` — Not found
- `422` — Validation Error
- `500` — Server error

---

[API](https://skmtc.net/pollination/apis/pollination-server.md) · [All operations](https://skmtc.net/pollination/apis/pollination-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pollination/pollination-server/revisions/c1f3c6d96b31/schema)
