Skip to main content
DELETE
/
apps
/
{id}
/
delete-app
Delete an app
curl --request DELETE \
  --url https://apps-studio.thena.ai/apps/{id}/delete-app \
  --header 'x-api-key: <api-key>'
{
  "status": "success",
  "message": "App deleted successfully",
  "appDetails": {
    "name": "My App",
    "description": "App description",
    "deletedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The id of the app to delete

Response

App deleted successfully

status
string
required

Status of the delete operation

Example:

"success"

message
string
required

Message describing the result of the operation

Example:

"App deleted successfully"

appDetails
object
required

Details of the deleted app

I