Méthode | Description | |
---|---|---|
GetPublishStatus ( long reportId ) : |
Get the publish status of a report. It mirrors to the following Smartsheet REST API method: GET /reports/{id}/publish
|
|
GetReport ( long reportId, IEnumerable |
Gets the Report, including one page of Rows, and optionally populated with Discussions, Attachments, and source Sheets. It mirrors To the following Smartsheet REST API method: GET /reports/{reportId} This method returns the top 100 rows. To get more or less rows please use the other overloaded versions of this method |
|
GetReportAsCSV ( long reportId, |
Get a report as a CSV file. It mirrors To the following Smartsheet REST API method:
|
|
GetReportAsExcel ( long reportId, |
Gets the Report in the format specified, based on the Report ID. It mirrors To the following Smartsheet REST API method:
|
|
ListReports ( |
Gets the list of all Reports that the User has access to, in alphabetical order, by name. It mirrors To the following Smartsheet REST API method: GET /reports
|
|
ReportResourcesImpl ( |
Constructor. Exceptions: - IllegalArgumentException : if any argument is null
|
|
SendReport ( long reportId, |
Send a report as a PDF attachment via Email To the designated recipients. It mirrors To the following Smartsheet REST API method: POST /reports/{reportId}/emails
|
|
UpdatePublishStatus ( long reportId, |
Sets the publish status of a report and returns the new status, including the URLs of any enabled publishing. It mirrors to the following Smartsheet REST API method: PUT /reports/{id}/publish
|
Méthode | Description | |
---|---|---|
GetReportAsFile ( string path, |
Get a sheet as a file. It mirrors To the following Smartsheet REST API method:
|
public GetPublishStatus ( long reportId ) : |
||
reportId | long | the reportId |
Résultat |
public GetReport ( long reportId, IEnumerable |
||
reportId | long | the Id of the report |
includes | IEnumerable |
used To specify the optional objects To include. |
pageSize | int | (optional): Number of rows per page. If not specified, the default value is 100. /// This operation can return a maximum of 500 rows per page. |
page | int | (optional): Which page number (1-based) to return. /// If not specified, the default value is 1. If a page number is specified that is greater than the number of total pages, the last page will be returned. |
Résultat | Report |
public GetReportAsCSV ( long reportId, |
||
reportId | long | the Id of the report |
outputStream | the output stream To which the Excel file will be written. | |
Résultat | void |
public GetReportAsExcel ( long reportId, |
||
reportId | long | the Id of the report |
outputStream | the output stream To which the Excel file will be written. | |
Résultat | void |
public ListReports ( |
||
paging | the pagination | |
modifiedSince | System.DateTime | |
Résultat | PaginatedResult |
public ReportResourcesImpl ( |
||
smartsheet | the Smartsheet | |
Résultat | System |
public SendReport ( long reportId, |
||
reportId | long | the reportId |
the Email | ||
Résultat | void |
public UpdatePublishStatus ( long reportId, |
||
reportId | long | the reportId |
reportPublish | the ReportPublish object | |
Résultat |