How to delete attachment and buildrecord in RQM using REST API?
I am trying to use RQM's REST API in my application to delete attachments and buildrecords. The RQM documentation (https://jazz.net/wiki/bin/view/Main/RqmApi) shows that DELETE is not a supported operation for either attachment or buildrecord resource. Naturally, when I try to send DELETE query like this:
<server>/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/<project>attachment/urn:com.ibm.rqm:attachment:399
I am getting 501 (Not Implemented) from the server. The same is true for buildrecord.
DELETE requests of the same type do work for executionresult and testsuitelog, and the doc does say that DELETE is supported for both.
So, does anybody know if there is a way to delete attachments and buildrecords via REST API?