Delete App Fields

Delete fields from an app

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredThe app to delete fields from
field_idsarrayRequiredArray 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"
}'