Overview
The structure represents a project task plan linked with Smartsheetspecifies how a Smartsheet Sheet is to be created and linked to a Project which is specified to use Smartsheet as the Project Management Tool.
Format
Panel |
---|
title | PwsSmartsheetSubject |
---|
|
|
...
Element | Data Type | Required? | Default | Description | Sample Data |
---|
Id | Int64 | Yes | None. Must be specified. | The numeric Id of the Smartsheet element used when a link is created from a Projector Project using Smartsheet for Task Management to a Smartsheet sheet that will contain the Projector Task Plan. What is identified by the Id and how the link is created depends on the Type specified in the structure: - When
Type is 'T' for "Template", this field is a Smartsheet Template Id. That Template will be used to create a new Smartsheet Sheet, and the Projector Project Task Plan will be represented in that newly created Smartsheet Sheet. - When
Type is 'S' for "Sheet", this field is a Smartsheet Sheet Id. That sheet will be copied, and new copied Smartsheet Sheet will hold the representation of the Projector Project Task Plan. - When
Type is 'H' for "Hotlink", this field is a Smartsheet Sheet Id. The sheet will not be copied, but will be directly linked to represent the Projector Project Task Plan. It is an error to Hotlink a sheet that already represents the task plan of a different Projector Project.
| 2786440702283652 |
Type | String | Yes | None. Must be specified. | Only three values are valid: - 'T' for "Template"
- 'S' for "Sheet"
- 'H' for "Hotlink"
| T |
Usage Example(s)
Code Block |
---|
language | xml |
---|
title | SmarsheetLinkSubject |
---|
|
<sch:SmartsheetLinkSubject>
<sch:Id>2786440702283652</sch:Id>
<sch:Type>T</sch:Type>
</sch:SmartsheetLinkSubject> |
...