Delete App
Delete app permanently (irreversible)
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | The app to delete |
Examples
MCP Tool Call
{
"name": "tape_deleteApp",
"arguments": {
"app_id": 12345
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/deleteApp \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345
}'