Skip to main content
PATCH
/
apps
/
{id}
/
update-app
Update an existing app
curl --request PATCH \
  --url https://apps-studio.thena.ai/apps/{id}/update-app \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{}'
{
  "status": "success",
  "message": "Minor changes saved successfully",
  "changes": [
    {
      "path": "app.name",
      "oldValue": "Old Name",
      "newValue": "New Name"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Unique identifier of the app

Body

application/json · object

Response

App updated successfully

status
enum<string>
required

Status of the update operation

Available options:
success,
unchanged
Example:

"success"

message
string
required

Message describing the result of the operation

Example:

"Minor changes saved successfully"

changes
object[]
required

List of changes made to the app manifest

I