SharePoint
Create List Column
POST
/
projects
/
{project_id}
/
actions
/
#SHAREPOINT_CREATE_LIST_COLUMN
Copy
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SHAREPOINT_CREATE_LIST_COLUMN' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "SHAREPOINT_CREATE_LIST_COLUMN",
"parameters": {
"listId": "<string>",
"dataType": "boolean",
"allowTextEntry": true,
"choices": {},
"displayAs": "<string>",
"format": "<string>",
"maximum": "<string>",
"minimum": "<string>",
"linesForEditing": "<string>",
"maxLength": "<string>",
"textType": "<string>",
"allowMultipleLines": true,
"displayName": "<string>",
"apiName": "<string>",
"description": "<string>",
"defaultValue": "<string>",
"hidden": true,
"readOnly": true
}
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
application/json
Response
200
Success
Was this page helpful?
Copy
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SHAREPOINT_CREATE_LIST_COLUMN' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "SHAREPOINT_CREATE_LIST_COLUMN",
"parameters": {
"listId": "<string>",
"dataType": "boolean",
"allowTextEntry": true,
"choices": {},
"displayAs": "<string>",
"format": "<string>",
"maximum": "<string>",
"minimum": "<string>",
"linesForEditing": "<string>",
"maxLength": "<string>",
"textType": "<string>",
"allowMultipleLines": true,
"displayName": "<string>",
"apiName": "<string>",
"description": "<string>",
"defaultValue": "<string>",
"hidden": true,
"readOnly": true
}
}'
Assistant
Responses are generated using AI and may contain mistakes.