CreateSheet
Create a new sheet in Smartsheet for data organization and tracking.
Note:このプロシージャは、インデックス付きパラメータを使用します。 インデックス付きパラメータは、プロシージャの入力として単一のパラメータを複数のインスタンスに提供することを容易にします。
Param# という名前の入力パラメータがあるとします。このようなインデックス付きパラメータの複数のインスタンスを入力するには、次のように実行します。
EXEC ProcedureName Param#1 = "value1", Param#2 = "value2", Param#3 = "value3"
以下の表では、インデックス付きの入力パラメータは、名前の末尾に '#' 文字が付きます。
Input
| Name | Type | Required | Description |
| SheetName | String | True | The name of the new sheet to be created. This should be a unique, user-friendly identifier for the sheet. |
| ColumnName# | String | False | The name of the column to be added to the sheet. Use descriptive names for clarity. |
| ColumnType# | String | False | The data type of the column values, such as Text, Number, or Date, which defines how the column data will be stored and validated. |
| PrimaryColumn# | String | False | Indicates whether the specified column is the primary column, which typically serves as the main identifier for rows in the sheet. |
Result Set Columns
| Name | Type | Description |
| Success | String | A boolean or status flag indicating if the sheet creation operation was successful. |
| Id | String | The unique identifier of the sheet created. |