<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Rest API Deleting Sheets in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136369#M1960</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;The HTTP header is set in a different class that describes the _qrsClient.&lt;/P&gt;&lt;P&gt;I have taken a screenshot of the delete-class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="9e5abaae066f18ee6332742b5ff7fcf5.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/211278_9e5abaae066f18ee6332742b5ff7fcf5.png" style="height: 197px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Aug 2018 07:05:33 GMT</pubDate>
    <dc:creator>joshuapierlo</dc:creator>
    <dc:date>2018-08-20T07:05:33Z</dc:date>
    <item>
      <title>Rest API Deleting Sheets</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136366#M1957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hi!&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I've been working on a function that duplicates an app with a selection of sheets.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;The way I do this is by simply duplicating the app, and going trough a list of sheets that have not been selected to make sure these sheets get deleted in the duplicated app.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I've tried using the following endpoints:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;await _qrsClient.Delete("qrs/app/appcontent/"+ newAppSheet.ID +"/delete?xrfkey=(key)","");&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;await _qrsClient.Delete("/qrs/appcontent/newAppID/deletecontentexternalpath="+newAppSheet.Name+"&amp;amp;xrfkey=(key)");&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;await _qrsClient.Delete("qrs/appcontent/"+ newAppID +"/deleteexternalpath="+newAppSheet.Name+"&amp;amp;xrfkey=(key)");&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;await _qrsClient.Delete("qrs/appobject/(SheetIDOfSheetThatNeedsToBeDeleted)/delete?xrfkey=(key)");&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Sadly to no avail as it keeps giving me "http request header is incorrect" on the first 2 request and "Object reference not set to an instance of an object" on the third &amp;amp; fourth.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I've also tracked the network activity on deleting sheets trough the QMC using the following endpoints:&lt;BR /&gt;await _qrsClient.Delete("qrs/selection/(sheetid)/app/object?xrfkey=(key)");&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;await _qrsClient.Delete("qrs/selection/(sheetid)?xrfkey=(key)");&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;but also to no avail.... (the http request header is incorrect).&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/June2018/apis/repositoryserviceapi/index.html#0bd3d491Ba7d3e55008fA7d80628fd4c" title="https://help.qlik.com/en-US/sense-developer/June2018/apis/repositoryserviceapi/index.html#0bd3d491Ba7d3e55008fA7d80628fd4c"&gt;https://help.qlik.com/en-US/sense-developer/June2018/apis/repositoryserviceapi/index.html#0bd3d491Ba7d3e55008fA7d80628fd…&lt;/A&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I've looked trough the rest API endpoint documentation but I can't find any examples on how to actually delete a sheet trough rest API. Does anyone have a clue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 11:53:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136366#M1957</guid>
      <dc:creator>joshuapierlo</dc:creator>
      <dc:date>2018-08-14T11:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Deleting Sheets</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136367#M1958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to include the xrfkey both as a URL parameter and as a http header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik Wetterberg&lt;/P&gt;&lt;P&gt;&lt;A href="https://extendingqlik.upper88.com/" title="https://extendingqlik.upper88.com/"&gt;https://extendingqlik.upper88.com/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Aug 2018 19:20:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136367#M1958</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2018-08-18T19:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Deleting Sheets</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136368#M1959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be refer this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.restapitutorial.com/lessons/httpmethods.html" title="https://www.restapitutorial.com/lessons/httpmethods.html"&gt;https://www.restapitutorial.com/lessons/httpmethods.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Aug 2018 12:08:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136368#M1959</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-08-19T12:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Deleting Sheets</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136369#M1960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;The HTTP header is set in a different class that describes the _qrsClient.&lt;/P&gt;&lt;P&gt;I have taken a screenshot of the delete-class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="9e5abaae066f18ee6332742b5ff7fcf5.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/211278_9e5abaae066f18ee6332742b5ff7fcf5.png" style="height: 197px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2018 07:05:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136369#M1960</guid>
      <dc:creator>joshuapierlo</dc:creator>
      <dc:date>2018-08-20T07:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Deleting Sheets</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136370#M1961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌How do you make sure the same xrfkey is used?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik Wetterberg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 04:06:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136370#M1961</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2018-08-21T04:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Deleting Sheets</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136371#M1962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erik, thanks for your response&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's only used a couple of times troughout the whole application, and it's predefined.&lt;/P&gt;&lt;P&gt;I double checked and I'm 100% positive that they're the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also i'm using this delete task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;public async Task&amp;lt;string&amp;gt; Delete(string endpoint)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SetHeaders(_client);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _client.QueryString = _queryStringCollection;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while (_client.IsBusy)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; await Task.Delay(200);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return await _client.UploadStringTaskAsync(_serverURL + endpoint, "Delete", "").ConfigureAwait(false);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (WebException ex)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; throw new Exception(await ParseWebException(ex).ConfigureAwait(false), ex);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-the SetHeaders takes care of adding the headers (including the xrfkey aswell),&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN&gt;-the server URL is our qliksense server (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://OurIP/" rel="nofollow" target="_blank"&gt;https://OurIP&lt;/A&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;-the endpoint is /qrs/selection/{SHEET-ID}/app/object?xrfkey as shown in the screenshot above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The exception thrown in the catch is:&lt;/P&gt;&lt;P&gt;"The remote server returned an error: (400) Bad Request."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I've checked the networking activities when deleting a sheet trough the QMC and it included the port aswell (433).&lt;/P&gt;&lt;P&gt;I tried adding it to the endpoint (:433/qrs/selection/{SHEET-ID}/app/object?xrfkey) but it gives me an Unable to connect to the remote server. Checked the port listings and the proxy service is running on port 433 as usual....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 08:00:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136371#M1962</guid>
      <dc:creator>joshuapierlo</dc:creator>
      <dc:date>2018-08-21T08:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Deleting Sheets</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136372#M1963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Are you sure about the endpoint? I would expect it to be something like '/qrs/[type]/{id}' as described &lt;A href="https://help.qlik.com/en-US/sense-developer/June2018/Subsystems/RepositoryServiceAPI/Content/RepositoryServiceAPI/RepositoryServiceAPI-Delete.htm"&gt;here&lt;/A&gt;. The type would be 'app/object' in your case. Delete app object is not described in the documentation, but compare to the URL described for &lt;A href="https://help.qlik.com/en-US/sense-developer/June2018/Subsystems/RepositoryServiceAPI/Content/RepositoryServiceAPI/RepositoryServiceAPI-App-Object-Publish.htm"&gt;publish&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erik Wetterberg&lt;/P&gt;&lt;P&gt;&lt;A href="https://extendingqlik.upper88.com/" title="https://extendingqlik.upper88.com/"&gt;https://extendingqlik.upper88.com/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 09:59:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136372#M1963</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2018-08-22T09:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Rest API Deleting Sheets</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136373#M1964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have found the error.&lt;/P&gt;&lt;P&gt;The method is actually working fine, just the provided ID does not match the ID that should be sent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After contact with the Qlik Support team we have made it work by re-writing the whole sheetID receiving process.&lt;/P&gt;&lt;P&gt;This is quoted directly from Qlik Support if anyone has the same problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;1) Get the object (sheet) id via GET /qrs/app/object?xrfkey=someran&lt;/SPAN&gt;&lt;SPAN class="wbr" style="font-size: 13px; background: #fbfbfb; color: #737373; font-family: arial, verdana, sans-serif;"&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;domstring&amp;amp;filter=&lt;/SPAN&gt;&lt;A href="http://app.name/" style="color: #007fc0; font-size: 13px; background: #fbfbfb; font-family: arial, verdana, sans-serif;" target="_blank"&gt;app.name&lt;/A&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt; eq 'SomeApp' and objectType eq 'sheet' and name eq 'deleteMe'. Example response:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;(returns 200 OK with json body below)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;[&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"id": "592184be-8691-4d89-9377-5859a&lt;/SPAN&gt;&lt;SPAN class="wbr" style="font-size: 13px; background: #fbfbfb; color: #737373; font-family: arial, verdana, sans-serif;"&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;bab4486",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"engineObjectType": "",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"description": "",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"objectType": "sheet",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"publishTime": "1753-01-01T00:00:00.000Z",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"published": false,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"name": "deleteMe",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"engineObjectId": "b0cc25a5-2fc7-4c7c-934c-b1466&lt;/SPAN&gt;&lt;SPAN class="wbr" style="font-size: 13px; background: #fbfbfb; color: #737373; font-family: arial, verdana, sans-serif;"&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;770c8ee",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"contentHash": "IM4*K[9PGEY)QUGC'&amp;lt;Q&lt;/SPAN&gt;&lt;A href="https://community.qlik.com/" style="color: #007fc0; font-size: 13px; background: #fbfbfb; font-family: arial, verdana, sans-serif;" target="_blank"&gt;\\A\&lt;/A&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"D^K#2CF0V&lt;/SPAN&gt;&lt;A href="https://community.qlik.com/" style="color: #007fc0; font-size: 13px; background: #fbfbfb; font-family: arial, verdana, sans-serif;" target="_blank"&gt;\\K-#[&lt;/A&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;:L9Y&amp;gt;OW",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;"privileges": null&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;2) Delete via DELETE /qrs/app/object/592184be-8691-&lt;/SPAN&gt;&lt;SPAN class="wbr" style="font-size: 13px; background: #fbfbfb; color: #737373; font-family: arial, verdana, sans-serif;"&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;4d89-9377-5859abab4486?xrfkey=&lt;/SPAN&gt;&lt;SPAN class="wbr" style="font-size: 13px; background: #fbfbfb; color: #737373; font-family: arial, verdana, sans-serif;"&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;somerandomstring&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: arial, verdana, sans-serif; font-size: 13px; background-color: #fbfbfb;"&gt;(returns 204 No Content if successful)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2018 10:02:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Rest-API-Deleting-Sheets/m-p/136373#M1964</guid>
      <dc:creator>joshuapierlo</dc:creator>
      <dc:date>2018-08-27T10:02:23Z</dc:date>
    </item>
  </channel>
</rss>

