Delete App Fields
Delete fields from an app
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | The app to delete fields from |
field_ids | array | Required | Array of field_ids to delete |
Examples
MCP Tool Call
{
"name": "tape_deleteAppFields",
"arguments": {
"app_id": 12345,
"field_ids": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/deleteAppFields \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"app_id": 12345,
"field_ids": "example"
}'