v1

latestOpenAPI 3.1.02026-07-2618690613.4 KB
Models

Delete view

Delete or ignores a view in a model. Use the mode parameter to specify the behavior of this endpoint.

delete/v1/models/{modelId}/view/{viewName}

Path parameters

modelIdstring uuid required

The unique identifier of the model.

viewNamestring required

The name of the view to delete or ignore.

Query parameters

branchIdstring uuid

Optional branch ID

mode'COMBINED' | 'MERGED' | 'EXTENSION'

Controls how the view is deleted or hidden:

  • COMBINEDDefault. Marks the view as ignored (ignored: true) if it exists in the parent model, otherwise hard-deletes
  • EXTENSION — Hard-deletes the view from the extension layer
  • MERGED — Marks the view as shallowIgnored: true, hiding it only from the immediate parent layer

Response

View deleted or ignored successfully

successboolean

Example response

{
  "success": true
}