SpiraPlan: REST Web Service (v7.0)
Retrieves the list of saved reports for a specific user (step 1 in getting the output of a report)
Only reports saved by a user are returned - in other words, standard reports cannot be generated via the API
To access this REST web service, you need to use the following URL (make sure to replace any parameters (eg {project_id}) with the relevant value (eg 1):
https://api.inflectra.com/spira/services/v7_0/RestService.svc/projects/{project_id}/reports/saved?include_shared={include_shared}
Nothing Expected
The JSON and XML examples below show the shape of one entry that will be returned. It does not show an example of how that entry will be populated.
<ArrayOfRemoteSavedReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Inflectra.SpiraTest.Web.Services.v7_0.DataObjects"> <RemoteSavedReport> <CreationDate i:nil="true" /> <CreatorId i:nil="true" /> <CreatorName i:nil="true" /> <IsShared>false</IsShared> <Name i:nil="true" /> <ProjectId i:nil="true" /> <ReportFormatId>0</ReportFormatId> <SavedReportId>0</SavedReportId> </RemoteSavedReport> </ArrayOfRemoteSavedReport>
[{"SavedReportId":0, "ProjectId":null, "Name":null, "IsShared":false, "ReportFormatId":0, "CreatorId":null, "CreatorName":null, "CreationDate":null}]