# Get report Gets a report based on the specified ID Endpoint: GET /reports/{reportId} Version: 2.0.0 Security: APIToken, OAuth2 ## Header parameters: - `Authorization` (string) API Access Token used to authenticate requests to Smartsheet APIs. - `smartsheet-integration-source` (string) Uses the following metadata to distinguish between human-initiated API requests and third-party service-initiated calls by AI Connectors or ITSM: - Integration source type - Organization name - Integration source name Format: TYPE,OrgName,SourceName Examples: AI,SampleOrg,My-AI-Connector-v2 SCRIPT,SampleOrg2,Accounting-updater-script APPLICATION,SampleOrg3,SheetUpdater Example: "AI,SampleOrg,My-AI-Connector-v2" - `Accept` (string) The Accept request-header field can be used to specify certain media types which are acceptable for the response. ## Query parameters: - `accessApiLevel` (number) Allows COMMENTER access for inputs and return values. For backwards-compatibility, VIEWER is the default. For example, to see whether a user has COMMENTER access for a sheet, use accessApiLevel=1. - `include` (string) A comma-separated list of optional elements to include in the response: * attachments * discussions * proofs * format * objectValue - when used in combination with a level query parameter, includes the email addresses for multi-contact data * scope - adds the report's scope to the response * source - adds the Source object indicating which report the report was created from, if any * sourceSheets Enum: "attachments", "discussions", "proofs", "format", "objectValue", "scope", "source", "sourceSheets" - `exclude` (string) A comma-separated list of optional elements to not include in the response Enum: "linkInFromCellDetails", "linksOutToCellsDetails" - `pageSize` (number) The maximum number of items to return per page. Unless otherwise stated for a specific endpoint, defaults to 100. If only page is specified, defaults to a page size of 100. For reports, the default is 100 rows. If you need larger sets of data from your report, returns a maximum of 10,000 rows per request. - `page` (number) Which page to return. Defaults to 1 if not specified. If you specify a value greater than the total number of pages, the last page of results is returned. - `level` (integer) specifies whether new functionality, such as multi-contact data is returned in a backwards-compatible, text format (level=0, default), multi-contact data (level=1), or multi-picklist data (level=3). ## Path parameters: - `reportId` (number, required) ID of the report being accessed. ## Response 200 fields (application/json): - `scope` (object) - `scope.sheets` (array) Array of Sheet objects (containing just the sheet ID) of any sheets that the requester has access to that make up the report. - `scope.sheets.id` (number) Sheet ID. - `scope.sheets.fromId` (number) The ID of the template from which to create the sheet. This attribute can be specified in a request, but is never present in a response. - `scope.sheets.ownerId` (number) User ID of the sheet owner. - `scope.sheets.accessLevel` (string) Enum: "ADMIN", "COMMENTER", "EDITOR", "EDITOR_SHARE", "OWNER", "VIEWER" - `scope.sheets.attachments` (array) Array of Attachment objects. Only returned if the [include](/api/smartsheet/openapi/sheets/getsheet) query string parameter contains attachments. - `scope.sheets.attachments.id` (number) Attachment ID. - `scope.sheets.attachments.parentId` (number) The ID of the parent. - `scope.sheets.attachments.attachmentType` (string) Attachment type. Note--Dropbox, Egnyte, and Evernote are not supported for Smartsheet.gov accounts. Enum: "BOX_COM", "DROPBOX", "EGNYTE", "EVERNOTE", "FILE", "GOOGLE_DRIVE", "LINK", "ONEDRIVE", "TRELLO" - `scope.sheets.attachments.attachmentSubType` (string) Attachment sub type. Note--Folder type is for EGNYTE values and the rest are GOOGLE_DRIVE values. Enum: "DOCUMENT", "DRAWING", "FOLDER", "PDF", "PRESENTATION", "SPREADSHEET" - `scope.sheets.attachments.mimeType` (string) Attachment MIME type. Example: "PNG" - `scope.sheets.attachments.parentType` (string) The type of object the attachment belongs to. Enum: "COMMENT", "PROOF", "ROW", "SHEET" - `scope.sheets.attachments.createdAt` (any) - `scope.sheets.attachments.createdBy` (object) User object containing name and email of the user who created this attachment. - `scope.sheets.attachments.createdBy.email` (string) Example: "jane.doe@smartsheet.com" - `scope.sheets.attachments.createdBy.name` (string) Example: "Jane Doe" - `scope.sheets.attachments.name` (string) Attachment name. - `scope.sheets.attachments.sizeInKb` (number) The size of the file, if the attachmentType is FILE. - `scope.sheets.attachments.url` (string) Attachment temporary URL (files only). - `scope.sheets.attachments.urlExpiresInMillis` (number) Attachment temporary URL time to live (files only). - `scope.sheets.cellImageUploadEnabled` (boolean) The sheet is enabled for cell images to be uploaded. - `scope.sheets.columns` (array) - `scope.sheets.columns.autoNumberFormat` (object) Object that describes how the the System Column type of "AUTO_NUMBER" is auto-generated. - `scope.sheets.columns.autoNumberFormat.fill` (string) Indicates zero-padding. Must be between 0 and 10 "0" (zero) characters. - `scope.sheets.columns.autoNumberFormat.prefix` (string) The prefix. Can include the date tokens: * {DD} * {MM} * {YY} * {YYYY} - `scope.sheets.columns.autoNumberFormat.startingNumber` (number) The starting number for the auto-id. - `scope.sheets.columns.autoNumberFormat.suffix` (string) The suffix. Can include the date tokens: * {DD} * {MM} * {YY} * {YYYY} - `scope.sheets.columns.contactOptions` (array) Array of ContactOption objects to specify a pre-defined list of values for the column. Column type must be CONTACT_LIST. - `scope.sheets.columns.contactOptions.email` (string) A parsable email address. - `scope.sheets.columns.contactOptions.name` (string) Can be a user's name, display name, or free text. - `scope.sheets.columns.description` (string) Column description. - `scope.sheets.columns.format` (string) The format descriptor (see [Cell formatting](/api/smartsheet/guides/advanced-topics/cell-formatting)). Only returned if the include query string parameter contains format and this column has a non-default format applied to it. - `scope.sheets.columns.formula` (string) The formula for the column, if set. - `scope.sheets.columns.hidden` (boolean) Indicates whether the column is hidden. - `scope.sheets.columns.id` (number) Column ID. - `scope.sheets.columns.index` (number) Column index or position. This number is zero-based. - `scope.sheets.columns.locked` (boolean) Indicates whether the column is locked. In a response, a value of true indicates that the column has been locked by the sheet owner or the admin. - `scope.sheets.columns.lockedForUser` (boolean) Indicates whether the column is locked for the requesting user. This attribute may be present in a response, but cannot be specified in a request. - `scope.sheets.columns.options` (array) Array of the options available for the column. - `scope.sheets.columns.primary` (boolean) Returned only if the column is the Primary Column (value = true). - `scope.sheets.columns.symbol` (string) When applicable for CHECKBOX or PICKLIST column types. See [Symbol Columns](/api/smartsheet/openapi/columns). - `scope.sheets.columns.systemColumnType` (string) See [System Columns](/api/smartsheet/openapi/columns). Enum: "AUTO_NUMBER", "CREATED_BY", "CREATED_DATE", "MODIFIED_BY", "MODIFIED_DATE" - `scope.sheets.columns.tags` (array) Set of tags to indicate special columns. Each element in the array is set to one of the listed enum values. Enum: "CALENDAR_END_DATE", "CALENDAR_START_DATE", "CARD_DONE", "GANTT_ALLOCATION", "GANTT_ASSIGNED_RESOURCE", "GANTT_DISPLAY_LABEL", "GANTT_DURATION", "GANTT_END_DATE", "GANTT_PERCENT_COMPLETE", "GANTT_PREDECESSOR", "GANTT_START_DATE", "BASELINE_START_DATE", "BASELINE_END_DATE", "BASELINE_VARIANCE" - `scope.sheets.columns.title` (string) Column title. - `scope.sheets.columns.type` (string) See [Column Types](/api/smartsheet/openapi/columns) Enum: "ABSTRACT_DATETIME", "CHECKBOX", "CONTACT_LIST", "DATE", "DATETIME", "DURATION", "MULTI_CONTACT_LIST", "MULTI_PICKLIST", "PICKLIST", "PREDECESSOR", "TEXT_NUMBER" - `scope.sheets.columns.validation` (boolean) Indicates whether validation has been enabled for the column (value = true). - `scope.sheets.columns.version` (number) * 0: CONTACT_LIST, PICKLIST, or TEXT_NUMBER. * 1: MULTI_CONTACT_LIST. * 2: MULTI_PICKLIST. Enum: 0, 1, 2 - `scope.sheets.columns.width` (number) Display width of the column in pixels. - `scope.sheets.crossSheetReferences` (array) Array of CrossSheetReference objects. Only returned if the [include](/api/smartsheet/openapi/sheets/getsheet) query string parameter contains crossSheetReferences. - `scope.sheets.crossSheetReferences.endColumnId` (number) Defines ending edge of range when specifying one or more columns. To specify an entire column, omit the startRowId and endRowId parameters. - `scope.sheets.crossSheetReferences.endRowId` (number) Defines ending edge of range when specifying one or more rows. To specify an entire row, omit the startColumnId and endColumnId parameters. - `scope.sheets.crossSheetReferences.id` (number) Cross-sheet reference ID, guaranteed unique within referencing sheet. - `scope.sheets.crossSheetReferences.name` (string) Friendly name of reference. Auto-generated unless specified in Create Cross-sheet References. - `scope.sheets.crossSheetReferences.startColumnId` (number) Defines beginning edge of range when specifying one or more columns. To specify an entire column, omit the startRowId and endRowId parameters. - `scope.sheets.crossSheetReferences.startRowId` (number) Defines beginning edge of range when specifying one or more rows. To specify an entire row, omit the startColumnId and endColumnId parameters. - `scope.sheets.crossSheetReferences.status` (string) Status of request: * 'BLOCKED' - A reference is downstream of a circular issue. * 'BROKEN' - The data source location (column, row or sheet) was deleted. * 'CIRCULAR' - The formula reference is self referencing and cannot be resolved. * 'DISABLED' - Updating the reference is temporarily disabled due to maintenance. * 'INVALID/UNKNOWN' - The reference is new and had not been validated. * 'NOT_SHARED' - No common shared users. * 'OK' - The reference is in a good state. Enum: "BLOCKED", "BROKEN", "CIRCULAR", "DISABLED", "INVALID/UNKNOWN", "NOT-SHARED", "OK" - `scope.sheets.crossSheetReferences.sourceSheetId` (number) Sheet ID of source sheet. - `scope.sheets.dependenciesEnabled` (boolean) Indicates whether dependencies are enabled. - `scope.sheets.discussions` (array) Array of Discussion objects Only returned if the [include](/api/smartsheet/openapi/sheets/getsheet) query string parameter contains discussions. - `scope.sheets.discussions.id` (number) Discussion ID. - `scope.sheets.discussions.comments` (array) Array of comments in discussion. Only returned if the include query string parameter contains comments. - `scope.sheets.discussions.comments.attachments` (array) Array of attachments on comments. - `scope.sheets.discussions.comments.createdBy` (object) User object containing name and email of the creator of this comment. - `scope.sheets.discussions.comments.discussionId` (number) Discussion ID of discussion that contains comment. - `scope.sheets.discussions.comments.id` (number) Comment ID. - `scope.sheets.discussions.comments.modifiedAt` (any) - `scope.sheets.discussions.comments.text` (string) Comment body. - `scope.sheets.discussions.commentAttachments` (array) Array of attachments on discussion comments. Only returned if the include query string parameter contains attachments. - `scope.sheets.discussions.commentCount` (number) Number of comments in the discussion. - `scope.sheets.discussions.createdBy` (object) User object containing name and email of the user who created the discussion. - `scope.sheets.discussions.lastCommentedAt` (any) - `scope.sheets.discussions.lastCommentedUser` (object) User object containing name and email of the user who last commented on the discussion. - `scope.sheets.discussions.parentId` (number) The ID of the associated row or sheet. - `scope.sheets.discussions.parentType` (string) Type of parent object. Enum: "ROW", "SHEET" - `scope.sheets.discussions.readOnly` (boolean) Indicates whether the user can modify the discussion. - `scope.sheets.discussions.title` (string) Title automatically created by duplicating the first 100 characters of top-level comment. - `scope.sheets.effectiveAttachmentOptions` (array) Array of enum strings (see [Attachment.attachmentType](/api/smartsheet/openapi/attachments) indicating the allowable attachment options for the current user and sheet. - `scope.sheets.ganttEnabled` (boolean) Indicates whether "Gantt View" is enabled. - `scope.sheets.hasSummaryFields` (boolean) Indicates whether a sheet summary is present. - `scope.sheets.isMultiPicklistEnabled` (boolean) Indicates whether multi-select is enabled. - `scope.sheets.name` (string) Sheet name. - `scope.sheets.owner` (string) Email address of the sheet owner. - `scope.sheets.permalink` (string) URL that represents a direct link to the sheet in Smartsheet. - `scope.sheets.projectSettings` (object) Represents the project settings dependencies for a specific sheet. Project settings may be updated on sheets that the user has editor access. - `scope.sheets.projectSettings.lengthOfDay` (number) Length of a workday for a project sheet. - `scope.sheets.projectSettings.nonWorkingDays` (array) Non-working days for a project sheet. - `scope.sheets.projectSettings.workingDays` (array) Enum: "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY" - `scope.sheets.readOnly` (boolean) Returned only if the sheet belongs to an expired trial (value = true). - `scope.sheets.resourceManagementEnabled` (boolean) Indicates that resource management is enabled. - `scope.sheets.resourceManagementType` (string) Resource Management type. Indicates the type of RM that is enabled. Enum: "NONE", "LEGACY_RESOURCE_MANAGEMENT", "RESOURCE_MANAGEMENT_BY_SMARTSHEET" - `scope.sheets.rows` (array) - `scope.sheets.rows.id` (number) Row ID. - `scope.sheets.rows.sheetId` (number) Parent sheet ID. - `scope.sheets.rows.siblingId` (number) Sibling ID. - `scope.sheets.rows.attachments` (array) Attachments on row. Only returned if the include query string parameter contains attachments. - `scope.sheets.rows.cells` (array) Cells belonging to the row. - `scope.sheets.rows.cells.columnId` (number) The ID of the column that the cell is located in. - `scope.sheets.rows.cells.rowId` (number) The ID of the row the cell is located in. - `scope.sheets.rows.cells.columnType` (string) Only returned if the include query string parameter contains columnType. - `scope.sheets.rows.cells.conditionalFormat` (string) The format descriptor describing this cell's conditional format. Only returned if the include query string parameter contains format and this cell has a conditional format applied. - `scope.sheets.rows.cells.displayValue` (string) Visual representation of cell contents, as presented to the user in the UI. - `scope.sheets.rows.cells.format` (string) The format descriptor. Only returned if the include query string parameter contains format and this cell has a non-default format applied. - `scope.sheets.rows.cells.formula` (string) The formula for a cell, if set, for instance =COUNTM([Assigned To]3). Note that calculation errors or problems with a formula do not cause the API call to return an error code. Instead, the response contains the same value as in the UI, such as cell.value = "#CIRCULAR REFERENCE". - `scope.sheets.rows.cells.hyperlink` (object) - `scope.sheets.rows.cells.hyperlink.reportId` (number) If non-null, this hyperlink is a link to the report with this ID. - `scope.sheets.rows.cells.hyperlink.sheetId` (number) If non-null, this hyperlink is a link to the sheet with this ID. - `scope.sheets.rows.cells.hyperlink.sightId` (number) If non-null, this hyperlink is a link to the dashboard with this ID. - `scope.sheets.rows.cells.hyperlink.url` (string) When the hyperlink is a URL link, this property contains the URL value. When the hyperlink is a dashboard/report/sheet link (that is, dashboardId, reportId, or sheetId is non-null), this property contains the permalink to the dashboard, report, or sheet. - `scope.sheets.rows.cells.image` (object) - `scope.sheets.rows.cells.image.altText` (string) Alternate text for the image. - `scope.sheets.rows.cells.image.height` (number) Original height (in pixels) of the uploaded image. - `scope.sheets.rows.cells.image.id` (string) Image ID. - `scope.sheets.rows.cells.image.width` (number) Original width (in pixels) of the uploaded image. - `scope.sheets.rows.cells.linkInFromCell` (object) - `scope.sheets.rows.cells.linkInFromCell.columnId` (number) Column ID of the linked cell. - `scope.sheets.rows.cells.linkInFromCell.rowId` (number) Row ID of the linked cell. - `scope.sheets.rows.cells.linkInFromCell.sheetId` (number) Sheet ID of the sheet that the linked cell belongs to. - `scope.sheets.rows.cells.linkInFromCell.sheetName` (string) Sheet name of the linked cell. - `scope.sheets.rows.cells.linkInFromCell.status` (string) * BLOCKED One of several other values indicating unusual error conditions. * BROKEN The row or sheet linked to was deleted. * CIRCULAR One of several other values indicating unusual error conditions. * DISABLED One of several other values indicating unusual error conditions. * INACCESSIBLE The sheet linked to cannot be viewed by this user. * INVALID One of several other values indicating unusual error conditions. * NOT_SHARED One of several other values indicating unusual error conditions. * OK The link is in a good state. Enum: "BLOCKED", "BROKEN", "CIRCULAR", "DISABLED", "INACCESSIBLE", "INVALID", "NOT_SHARED", "OK" - `scope.sheets.rows.cells.linksOutToCells` (array) - `scope.sheets.rows.cells.objectValue` (any) - `scope.sheets.rows.cells.overrideValidation` (boolean) (Admin only) Indicates whether the cell value can contain a value outside of the validation limits (value = true). When using this parameter, you must also set strict to false to bypass value type checking. This property is honored for POST or PUT actions that update rows. - `scope.sheets.rows.cells.strict` (boolean) Set to false to enable lenient parsing. Defaults to true. You can specify this attribute in a request, but it is never present in a response. - `scope.sheets.rows.cells.value` (any) A string, number, or a Boolean value -- depending on the cell type and the data in the cell. Cell values larger than 4000 characters are silently truncated. An empty cell returns no value. - `scope.sheets.rows.columns` (array) Columns of row. Only returned if the include query string parameter contains columns. - `scope.sheets.rows.conditionalFormat` (string) Describes this row's conditional format. Only returned if the include query string parameter contains format and this row has a conditional format applied. Example: ",,1,1,,,,,,,,,,,,," - `scope.sheets.rows.createdBy` (object) User object containing name and email of the creator of this row. - `scope.sheets.rows.discussions` (array) Discussions on the row. Only returned if the include query string parameter contains discussions. - `scope.sheets.rows.proof` (object) Object containing zero or more media items, including images, videos, and documents, for review, editing, or approval. - `scope.sheets.rows.proof.id` (number) Proof ID of the proof version. - `scope.sheets.rows.proof.originalId` (number) Proof ID of the original proof version. - `scope.sheets.rows.proof.name` (string) Proof name. This is the same as primary column value. If the primary column value is empty, name is empty. - `scope.sheets.rows.proof.type` (string) File type for the proof version. Enum: "DOCUMENT", "IMAGE", "MIXED", "NONE", "VIDEO" - `scope.sheets.rows.proof.documentType` (string) If type=DOCUMENT, then this indicates the type of file, such as PDF. - `scope.sheets.rows.proof.proofRequestUrl` (string) URL to review a proofing request. - `scope.sheets.rows.proof.version` (number) The version number of the proof. - `scope.sheets.rows.proof.lastUpdatedAt` (any) - `scope.sheets.rows.proof.lastUpdatedBy` (object) User object containing name and email of the user who last updated the proof. - `scope.sheets.rows.proof.isCompleted` (boolean) Indicates whether the proof is completed. - `scope.sheets.rows.proof.attachments` (array) Array of Attachment objects. Only returned if the include query string parameter contains attachments. - `scope.sheets.rows.proof.discussions` (array) Array of Discussion objects. Only returned if the include query string parameter contains discussions. - `scope.sheets.rows.expanded` (boolean) Indicates whether the row is expanded or collapsed. - `scope.sheets.rows.filteredOut` (boolean) Indicates if the row is filtered out by a column filter. Only returned if the include query string parameter contains filters. - `scope.sheets.rows.format` (string) Format descriptor. Only returned if the include query string parameter contains format and this row has a non-default format applied. Example: ",,1,1,,,,,,,,,,,,," - `scope.sheets.rows.inCriticalPath` (boolean) Only returned, with a value of true, if the sheet is a project sheet with dependencies enabled and this row is in the critical path. - `scope.sheets.rows.locked` (boolean) Indicates whether the row is locked. - `scope.sheets.rows.lockedForUser` (boolean) Indicates whether the row is locked for the requesting user. - `scope.sheets.rows.modifiedBy` (object) User object containing name and email of the last person to modify this row. - `scope.sheets.rows.permaLink` (string) URL that represents a direct link to the row in Smartsheet. Only returned if the include query string parameter contains rowPermalink. - `scope.sheets.rows.rowNumber` (number) Row number within the sheet. - `scope.sheets.rows.version` (number) Sheet version number that is incremented every time a sheet is modified. - `scope.sheets.showParentRowsForFilters` (boolean) Returned only if there are column filters on the sheet. Value = true if "show parent rows" is enabled for the filters. - `scope.sheets.source` (object) - `scope.sheets.source.id` (number) The ID of the dashboard, report, sheet, or template from which the enclosing dashboard, report, sheet, or template was created. - `scope.sheets.source.type` (string) report, sheet, sight (aka dashboard), or template. - `scope.sheets.summary` (object) Represents the entire summary, or a list of defined fields and values, for a specific sheet. - `scope.sheets.summary.fields` (array) Array of summary (or metadata) fields defined on the sheet. - `scope.sheets.summary.fields.id` (number) SummaryField ID. - `scope.sheets.summary.fields.createdBy` (object) User object containing name and email of the creator of this summary field. - `scope.sheets.summary.fields.format` (string) The format descriptor. Only returned if the include query string parameter contains format and this column has a non-default format applied to it. - `scope.sheets.summary.fields.formula` (string) The formula for a cell, if set. - `scope.sheets.summary.fields.index` (number) Field index or position. This number is zero-based. - `scope.sheets.summary.fields.locked` (boolean) Indicates whether the field is locked. - `scope.sheets.summary.fields.lockedForUser` (boolean) Indicates whether the field is locked for the requesting user. - `scope.sheets.summary.fields.modifiedBy` (object) User object containing name and email of the user who most recently modified this summary field. - `scope.sheets.summary.fields.options` (array) When applicable for PICKLIST column type. Array of the options available for the field. - `scope.sheets.summary.fields.symbol` (string) When applicable for PICKLIST column type. - `scope.sheets.summary.fields.title` (string) Arbitrary name, must be unique within summary. - `scope.sheets.summary.fields.type` (string) Enum: "ABSTRACT_DATETIME", "CHECKBOX", "CONTACT_LIST", "DATE", "DATETIME", "DURATION", "MULTI_CONTACT_LIST", "MULTI_PICKLIST", "PICKLIST", "PREDECESSOR", "TEXT_NUMBER" - `scope.sheets.summary.fields.validation` (boolean) Indicates whether summary field values are restricted to the type. - `scope.sheets.totalRowCount` (number) The total number of rows in the sheet. - `scope.sheets.userPermissions` (object) Describes the current user's editing permissions for a specific sheet. - `scope.sheets.userPermissions.summaryPermissions` (string) One of: * ADMIN: full control over fields. * READ_DELETE: sheet is owned by an individual account that doesn't have summary capabilities. If a summary exists, the only possible operations are GET and DELETE fields. * READ_ONLY. * READ_WRITE: can edit values of existing fields, but not create or delete fields, nor modify field type. Enum: "ADMIN", "READ_DELETE", "READ_ONLY", "READ_WRITE" - `scope.sheets.userSettings` (object) Represents individual user settings for a specific sheet. User settings may be updated even on sheets where the current user only has read access (for example, viewer permissions or a read-only sheet). - `scope.sheets.userSettings.criticalPathEnabled` (boolean) Does this user have "Show Critical Path" turned on for this sheet? NOTE: This setting only has an effect on project sheets with dependencies enabled. - `scope.sheets.userSettings.displaySummaryTasks` (boolean) Does this user have "Display Summary Tasks" turned on for this sheet? Applies only to sheets where "Calendar View" has been configured. - `scope.sheets.version` (number) A number that is incremented every time a sheet is modified. - `scope.sheets.workspace` (object) - `scope.sheets.workspace.id` (number) Workspace ID. - `scope.sheets.workspace.name` (string) Workspace name. - `scope.sheets.workspace.permalink` (string) URL that represents a direct link to the workspace in Smartsheet. - `scope.sheets.favorite` (boolean) Deprecated Returned only if the user has marked this sheet as a favorite in their Home tab (value = true). - `scope.workspaces` (array) Array of Workspace objects (containing just the workspace ID) that the requester has access to that make up the report. - `sourceSheets` (array) An array of Sheet objects (without rows), representing the sheets that rows in the report originated from. Only included in the Get Report response if the include parameter specifies sourceSheets. - `isSummaryReport` (boolean) A boolean to represent whether the report is a sheet summary report or not. If this property is false, it is a row report. ## Response default fields (application/json): - `refId` (string) The ID of the specific error occurrence. Please include this information when contacting Smartsheet support. - `errorCode` (number) Custom error code from Smartsheet. See the complete [Error Code List](/api/smartsheet/error-codes). - `message` (string) Descriptive error message.