---
title: "Edits an application"
method: PUT
path: "/app/{appId}"
tags: ["App"]
---

# Edits an application

`PUT /app/{appId}`

## Path parameters

- `appId` number, required

## Request body

- AppEdit
  - `name` string — The name of the application
  - `description` string — Description of the application
  - `contactEmail` string, email — Contact email for the application manager
  - `appUrl` string, uri — This should be a landing page for the app.
  - `logo` string — Base64 encoded logo image
  - `deploymentStatus` 'dev' | 'test' | 'prod' — Identifies if an application is in development, test, or production.
  - `activeVersion` number — Active version of the application

## Response `200`

Successful operation

- App
  - `_id` string, required — Document ID
  - `updatedAt` string, date-time, required — Timestamp when this was last modified
  - `createdAt` string, date-time, required — Timestamp when this was created
  - `appId` number, required — Application ID
  - `activeVersion` number — Active version of the application
  - `name` string, required — The name of the application
  - `description` string, required — Description of the application
  - `contactEmail` string, email — Contact email for the application manager
  - `appUrl` string, uri — This should be a landing page for the app.
  - `logo` string — Base64 encoded logo image
  - `deploymentStatus` 'dev' | 'test' | 'prod' — Identifies if an application is in development, test, or production.
  - `managerAddress` string, required — App manager's wallet address. Derived from the authorization signature provided by the creator.
  - `isDeleted` boolean — Whether or not this App is deleted

## Other responses

- `400` — Invalid input
- `422` — Validation exception
- `default` — Unexpected error

---

[API](https://skmtc.dev/lit-protocol/apis/vincent-registry-api.md) · [All operations](https://skmtc.dev/lit-protocol/apis/vincent-registry-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/lit-protocol/vincent-registry-api/revisions/825608de85fb/schema)
