deletesheet - qlik-oss/gopherciser GitHub Wiki
Delete one or more sheets in the current app.
Note: Specify either title
or id
, not both.
-
mode
:-
single
: Delete one sheet that matches the specifiedtitle
orid
in the current app. -
matching
: Delete all sheets with the specifiedtitle
in the current app. -
allunpublished
: Delete all unpublished sheets in the current app.
-
-
title
: (optional) Name of the sheet to delete. -
id
: (optional) GUID of the sheet to delete.
{
"action": "deletesheet",
"settings": {
"mode": "matching",
"title": "Test sheet"
}
}