Skip to main content

Update application

Update an existing application.

Optional with description, logo.

warning

Changing this value might prevent existing apps from checking for new versions, as the application name will have changed.

Endpoint:

POST /app/update

Headers:

Authorization: Bearer JWT token.

Body Form Data:

  • id: The ID of the application you want to change.

  • app: New application name.

  • file: Logo of the app.

  • description: App description.

Request:

curl --location 'http://localhost:9000/app/update' \
-H "Authorization: Bearer <jwt_token>" \
--form 'data="{\"id\":\"66ae13fe5b663c058367f893\", \"app\":\"new_name\"}"'

Response:

{
"updateAppResult.Updated": true
}