Field values for the new list item. Keys are column names, values are the field data.
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "site_id": { "type": "string", "description": "The unique ID of the SharePoint site" }, "list_id": { "type": "string", "description": "The unique ID of the SharePoint list" }, "fields": { "type": "object", "description": "Field values for the new list item. Keys are column names, values are the field data." } }, "required": [ "PCID", "site_id", "list_id", "fields" ]}
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "site_id": { "type": "string", "description": "The unique ID of the SharePoint site" }, "list_id": { "type": "string", "description": "The unique ID of the SharePoint list" }, "item_id": { "type": "string", "description": "The unique ID of the list item to delete" } }, "required": [ "PCID", "site_id", "list_id", "item_id" ]}
The unique ID of the SharePoint site, or “root” for the root site
$select
string
No
—
Comma-separated properties to return
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "site_id": { "type": "string", "description": "The unique ID of the SharePoint site, or \"root\" for the root site" }, "$select": { "type": "string", "description": "Comma-separated properties to return" } }, "required": [ "PCID", "site_id" ]}
Expand related resources (e.g. “columns” to include column definitions)
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "site_id": { "type": "string", "description": "The unique ID of the SharePoint site" }, "list_id": { "type": "string", "description": "The unique ID of the SharePoint list" }, "$expand": { "type": "string", "description": "Expand related resources (e.g. \"columns\" to include column definitions)" } }, "required": [ "PCID", "site_id", "list_id" ]}
Expand related resources (use “fields” to include item field values)
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "site_id": { "type": "string", "description": "The unique ID of the SharePoint site" }, "list_id": { "type": "string", "description": "The unique ID of the SharePoint list" }, "item_id": { "type": "string", "description": "The unique ID of the list item" }, "$expand": { "type": "string", "description": "Expand related resources (use \"fields\" to include item field values)" } }, "required": [ "PCID", "site_id", "list_id", "item_id" ]}
Expand related resources (use “fields” to include item field values)
$filter
string
No
—
OData filter expression to filter items by field values
$top
integer
No
—
Number of items to return
$select
string
No
—
Comma-separated properties to return
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "site_id": { "type": "string", "description": "The unique ID of the SharePoint site" }, "list_id": { "type": "string", "description": "The unique ID of the SharePoint list" }, "$expand": { "type": "string", "description": "Expand related resources (use \"fields\" to include item field values)" }, "$filter": { "type": "string", "description": "OData filter expression to filter items by field values" }, "$top": { "type": "integer", "description": "Number of items to return" }, "$select": { "type": "string", "description": "Comma-separated properties to return" } }, "required": [ "PCID", "site_id", "list_id" ]}
Field values to update. Only include the fields you want to change.
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "site_id": { "type": "string", "description": "The unique ID of the SharePoint site" }, "list_id": { "type": "string", "description": "The unique ID of the SharePoint list" }, "item_id": { "type": "string", "description": "The unique ID of the list item to update" }, "fields": { "type": "object", "description": "Field values to update. Only include the fields you want to change." } }, "required": [ "PCID", "site_id", "list_id", "item_id" ]}