Click or drag to resize

SheetDiscussionResources Interface

This interface provides methods to access discussion resources that are associated to a Sheet object.

Thread Safety: Implementation of this interface must be thread safe.

Namespace:  Smartsheet.Api
Assemblies:   smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
  smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
Syntax
public interface SheetDiscussionResources

The SheetDiscussionResources type exposes the following members.

Properties
  NameDescription
Public propertyAttachmentResources

Return the DiscussionAttachmentResources object that provides access to attachment resources associated with discussion resources.

Public propertyCommentResources

Returns the DiscussionCommentResources object that provides access to comment resources associated with discussion resources.

Top
Methods
  NameDescription
Public methodCreateDiscussion

Creates a new discussion on a sheet.

Mirrors to the following Smartsheet REST API method: POST /sheets/{sheetId}/discussions

Public methodCreateDiscussionWithAttachment

Creates a new discussion with an attachment on a sheet.

Mirrors to the following Smartsheet REST API method: POST /sheets/{sheetId}/discussions

Public methodDeleteDiscussion

Deletes a discussion

Mirrors to the following Smartsheet REST API method: DELETE /sheets/{sheetId}/discussions/{discussionId}

Public methodGetDiscussion

Gets the discussion specified in the URL.

Mirrors to the following Smartsheet REST API method: GET /sheets/{sheetId}/discussions/{discussionId}

Public methodListDiscussions

Gets a list of all discussions associated with the specified sheet (both sheet-level discussions and row-level discussions).

Mirrors to the following Smartsheet REST API method: GET /sheets/{sheetId}/discussions

Remarks
This operation supports pagination of results. For more information, see Paging.
Top
See Also