Delete App
Delete app and all items (irreversible)
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | App ID |
Optional Flags
| Parameter | Type | Required | Description |
|---|---|---|---|
silent | boolean | Optional | No notifications |
Examples
MCP Tool Call
{
"name": "podio_deleteApp",
"arguments": {
"app_id": 12345,
"silent": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/deleteApp \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"silent": true
}'