ShareResources Interface | |
This interface provides methods to access Share resources.
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 ShareResources
Public Interface ShareResources
public interface class ShareResources
type ShareResources = interface end
The ShareResources type exposes the following members.
Methods
| Name | Description |
---|
| DeleteShare | Delete a share. It mirrors to the following Smartsheet REST API method:
DELETE /workspaces/{workspaceId}/shares/{shareId}
DELETE /sheets/{sheetId}/shares/{shareId}
DELETE /reports/{reportId}/shares/{shareId} |
| GetShare | Get a Share. It mirrors to the following Smartsheet REST API method:
GET /workspaces/{workspaceId}/shares/{shareId}
GET /sheets/{sheetId}/shares/{shareId}
GET /reports/{reportId}/shares/{shareId} |
| ListShares | List shares of a given object. It mirrors to the following Smartsheet REST API method:
GET /workspaces/{workspaceId}/shares
GET /sheets/{sheetId}/shares
GET /reports/{reportId}/shares |
| ShareTo | Shares a Sheet with the specified Users and Groups. It mirrors to the following Smartsheet REST API method:
POST /workspaces/{workspaceId}/shares
POST /sheets/{sheetId}/shares
POST /reports/{reportId}/shares |
| UpdateShare | Updates the access level of a User or Group for the specified Object. It mirrors to the following Smartsheet REST API method:
PUT /workspaces/{workspaceId}/shares/{shareId}
PUT /sheets/{sheetId}/shares/{shareId}
PUT /reports/{reportId}/shares/{shareId} |
TopSee Also