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",
"textType": "plain",
"displayName": "<string>",
"apiName": "<string>",
"allowTextEntry": true,
"choices": {},
"displayAs": "number",
"format": "dateOnly",
"maximum": "<string>",
"minimum": "<string>",
"linesForEditing": "<string>",
"maxLength": "<string>",
"allowMultipleLines": true,
"description": "<string>",
"defaultValue": "<string>",
"hidden": true,
"readOnly": true
}
}
'