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"
}
]
}Updates an app’s manifest and configurations
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"
}
]
}Unique identifier of the app
The body is of type object.
App updated successfully
Status of the update operation
success, unchanged "success"
Message describing the result of the operation
"Minor changes saved successfully"
List of changes made to the app manifest
Show child attributes