Add a Column

Adds a column to a given SharePoint list using the Microsoft Graph API.

Syntax

Below is a line-by-line overview of the automation syntax. Expand each line to learn more.

add a column to the slist

What does it do? This is the base syntax for the procedure.

Where does it go? This phrase should be written on a new line.

Is it required? ✅ Yes — This phrase is required in the syntax.

Does it require input data? ✅ Yes — The list to which the column will be added must be specified for the slist.

the name is

What does it do? Specifies the name of the column to be added.

Where does it go? This phrase should be indented beneath add a column to the slist

Is it required? ✅ Yes — This phrase is required in the syntax.

Does it require input data? ✅ Yes — A text value should be specified as the name of the column to be added.

Example: the name is "name"

the description is

What does it do? Specifies the description of the column to be added.

Where does it go? This phrase should be indented beneath add a column to the slist

Is it required? 🌟 No — This phrase is optional in the syntax.

Does it require input data? ✅ Yes — A text value should be specified as the description of the column to be added.

Example: the description is "description"

Examples

1. Example 1

add a column to the list
  the name is "NewColumn"
  the description is "The newest column"

Last updated

Was this helpful?