productivity
Microsoft SharePoint CLI for AI Agents
Use the Microsoft SharePoint CLI from KosmoKrator to call Microsoft SharePoint tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.Microsoft SharePoint CLI Setup
Microsoft SharePoint can be configured headlessly with `kosmokrator integrations:configure microsoft-sharepoint`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure microsoft-sharepoint --enable --read allow --write ask --json
kosmokrator integrations:doctor microsoft-sharepoint --json
kosmokrator integrations:status --json Credentials
Authentication type: Manual OAuth token oauth2_manual_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
No credentials are required.
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_drive '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_drive '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs microsoft-sharepoint --json
kosmo integrations:docs microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_drive --json
kosmo integrations:schema microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_drive --json
kosmo integrations:search "Microsoft SharePoint" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_drive
Get entities from drives Official Microsoft Graph v1.0 endpoint: GET /drives.
read - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_drive '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_drive '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_create_drive
Add new entity to drives Official Microsoft Graph v1.0 endpoint: POST /drives.
write - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_create_drive '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_create_drive '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_get_drive
Get entity from drives by key Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_get_drive '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_get_drive '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_update_drive
Update entity in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_update_drive '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_update_drive '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_delete_drive
Delete entity from drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_delete_drive '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_delete_drive '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_bundles
Get bundles from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/bundles.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_bundles '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_bundles '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_create_bundles
Create new navigation property to bundles for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/bundles.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_create_bundles '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_create_bundles '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_bundles_get_count_c935
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/bundles/$count.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_bundles_get_count_c935 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_bundles_get_count_c935 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_bundles
Get bundles from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/bundles/{driveItem-id}.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_bundles '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_bundles '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_bundles_content
Get content for the navigation property bundles from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/bundles/{driveItem-id}/content.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_bundles_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_bundles_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_update_bundles_content
Update content for the navigation property bundles in drives Official Microsoft Graph v1.0 endpoint: PUT /drives/{drive-id}/bundles/{driveItem-id}/content.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_update_bundles_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_update_bundles_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_delete_bundles_content
Delete content for the navigation property bundles in drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/bundles/{driveItem-id}/content.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_delete_bundles_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_delete_bundles_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_following
Get following from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/following.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_following '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_following '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_following_get_count_16f3
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/following/$count.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_following_get_count_16f3 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_following_get_count_16f3 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_following
Get following from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/following/{driveItem-id}.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_following '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_following '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_following_content
Get content for the navigation property following from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/following/{driveItem-id}/content.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_following_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_following_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_update_following_content
Update content for the navigation property following in drives Official Microsoft Graph v1.0 endpoint: PUT /drives/{drive-id}/following/{driveItem-id}/content.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_update_following_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_update_following_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_delete_following_content
Delete content for the navigation property following in drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/following/{driveItem-id}/content.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_delete_following_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_delete_following_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items
drive: sharedWithMe (deprecated) Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_create_items
Create new navigation property to items for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_create_items '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_create_items '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_get_count_9c16
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/$count.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_get_count_9c16 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_get_count_9c16 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_items
Get items from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_items '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_items '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_update_items
Update the navigation property items in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_update_items '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_update_items '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_delete_items
Delete navigation property items for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_delete_items '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_delete_items '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_assign_sensitivity_label
Invoke action assignSensitivityLabel Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_assign_sensitivity_label '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_assign_sensitivity_label '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_checkin
Invoke action checkin Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/checkin.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_checkin '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_checkin '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_checkout
Invoke action checkout Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/checkout.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_checkout '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_checkout '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_list_children
List children of a driveItem Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/children.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_list_children '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_list_children '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_create_children
Create new navigation property to children for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/children.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_create_children '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_create_children '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_children_get_count_17b0
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/children/$count.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_children_get_count_17b0 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_children_get_count_17b0 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_get_children
Get children from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}.
read - Parameters
- drive_id, drive_item_id, drive_item_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_get_children '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_id1":"example_drive_item_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_get_children '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_id1":"example_drive_item_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_get_children_content
Get content for the navigation property children from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content.
read - Parameters
- drive_id, drive_item_id, drive_item_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_get_children_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_id1":"example_drive_item_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_get_children_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_id1":"example_drive_item_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_update_children_content
Update content for the navigation property children in drives Official Microsoft Graph v1.0 endpoint: PUT /drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content.
write - Parameters
- drive_id, drive_item_id, drive_item_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_update_children_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_id1":"example_drive_item_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_update_children_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_id1":"example_drive_item_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_children_content
Delete content for the navigation property children in drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content.
write - Parameters
- drive_id, drive_item_id, drive_item_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_children_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_id1":"example_drive_item_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_delete_children_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_id1":"example_drive_item_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_items_content
Get content for the navigation property items from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/content.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_items_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_items_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_update_items_content
Update content for the navigation property items in drives Official Microsoft Graph v1.0 endpoint: PUT /drives/{drive-id}/items/{driveItem-id}/content.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_update_items_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_update_items_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_delete_items_content
Delete content for the navigation property items in drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/content.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_delete_items_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_delete_items_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_copy
Invoke action copy Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/copy.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_copy '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_copy '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_create_link
Invoke action createLink Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/createLink.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_create_link '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_create_link '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_create_upload_session
Invoke action createUploadSession Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/createUploadSession.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_create_upload_session '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_create_upload_session '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_delta_fa14
Invoke function delta Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/delta().
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_delta_fa14 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_delta_fa14 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_discard_checkout
Invoke action discardCheckout Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/discardCheckout.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_discard_checkout '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_discard_checkout '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_extract_sensitivity_labels
Invoke action extractSensitivityLabels Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_extract_sensitivity_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_extract_sensitivity_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_follow
Invoke action follow Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/follow.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_follow '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_follow '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_get_activities_by_interval_4c35
Invoke function getActivitiesByInterval Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval().
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_get_activities_by_interval_4c35 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_get_activities_by_interval_4c35 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_invite
Invoke action invite Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/invite.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_invite '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_invite '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_get_list_item
Get listItem from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/listItem.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_get_list_item '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_get_list_item '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_permanent_delete
Invoke action permanentDelete Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/permanentDelete.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_permanent_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_permanent_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_list_permissions
Get permissions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/permissions.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_list_permissions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_list_permissions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_create_permissions
Create new navigation property to permissions for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/permissions.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_create_permissions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_create_permissions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_permissions_get_count_d367
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/permissions/$count.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_permissions_get_count_d367 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_permissions_get_count_d367 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_get_permissions
Get permissions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}.
read - Parameters
- drive_id, drive_item_id, permission_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_get_permissions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_get_permissions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_update_permissions
Update the navigation property permissions in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}.
write - Parameters
- drive_id, drive_item_id, permission_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_update_permissions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_update_permissions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_permissions
Delete navigation property permissions for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}.
write - Parameters
- drive_id, drive_item_id, permission_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_permissions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_delete_permissions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_permissions_permission_grant
Invoke action grant Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant.
read - Parameters
- drive_id, drive_item_id, permission_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_permissions_permission_grant '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_permissions_permission_grant '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_preview
Invoke action preview Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/preview.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_preview '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_preview '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_search
Invoke function search Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/restore.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_search '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_search '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_restore
Invoke action restore Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/restore.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_restore '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_restore '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_get_retention_label
driveItem: getRetentionLabel Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/retentionLabel.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_get_retention_label '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_get_retention_label '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_update_retention_label
driveItem: lockOrUnlockRecord Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/retentionLabel.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_update_retention_label '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_update_retention_label '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_retention_label
driveItem: removeRetentionLabel Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/retentionLabel.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_retention_label '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_delete_retention_label '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_list_subscriptions
Get subscriptions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/subscriptions.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_list_subscriptions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_list_subscriptions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_create_subscriptions
Create new navigation property to subscriptions for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/subscriptions.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_create_subscriptions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_create_subscriptions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_subscriptions_get_count_f848
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/subscriptions/$count.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_subscriptions_get_count_f848 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_subscriptions_get_count_f848 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_get_subscriptions
Get subscriptions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}.
read - Parameters
- drive_id, drive_item_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_get_subscriptions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_get_subscriptions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_update_subscriptions
Update the navigation property subscriptions in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}.
write - Parameters
- drive_id, drive_item_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_update_subscriptions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_update_subscriptions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_subscriptions
Delete navigation property subscriptions for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}.
write - Parameters
- drive_id, drive_item_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_subscriptions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_delete_subscriptions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_subscriptions_subscription_reauthorize
Invoke action reauthorize Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize.
read - Parameters
- drive_id, drive_item_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_subscriptions_subscription_reauthorize '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_subscriptions_subscription_reauthorize '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_list_thumbnails
Get thumbnails from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/thumbnails.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_list_thumbnails '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_list_thumbnails '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_create_thumbnails
Create new navigation property to thumbnails for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/thumbnails.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_create_thumbnails '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_create_thumbnails '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_thumbnails_get_count_50f0
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/thumbnails/$count.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_thumbnails_get_count_50f0 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_thumbnails_get_count_50f0 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_get_thumbnails
Get thumbnails from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}.
read - Parameters
- drive_id, drive_item_id, thumbnail_set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_get_thumbnails '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","thumbnail_set_id":"example_thumbnail_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_get_thumbnails '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","thumbnail_set_id":"example_thumbnail_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_update_thumbnails
Update the navigation property thumbnails in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}.
write - Parameters
- drive_id, drive_item_id, thumbnail_set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_update_thumbnails '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","thumbnail_set_id":"example_thumbnail_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_update_thumbnails '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","thumbnail_set_id":"example_thumbnail_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_thumbnails
Delete navigation property thumbnails for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}.
write - Parameters
- drive_id, drive_item_id, thumbnail_set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_thumbnails '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","thumbnail_set_id":"example_thumbnail_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_delete_thumbnails '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","thumbnail_set_id":"example_thumbnail_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_unfollow
Invoke action unfollow Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/unfollow.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_unfollow '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_unfollow '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_validate_permission
Invoke action validatePermission Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/validatePermission.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_validate_permission '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_validate_permission '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_list_versions
Get versions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/versions.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_list_versions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_list_versions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_create_versions
Create new navigation property to versions for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/versions.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_create_versions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_create_versions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_versions_get_count_6d7a
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/versions/$count.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_versions_get_count_6d7a '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_versions_get_count_6d7a '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_get_versions
Get versions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}.
read - Parameters
- drive_id, drive_item_id, drive_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_get_versions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_get_versions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_update_versions
Update the navigation property versions in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}.
write - Parameters
- drive_id, drive_item_id, drive_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_update_versions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_update_versions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_versions
Delete navigation property versions for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}.
write - Parameters
- drive_id, drive_item_id, drive_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_versions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_delete_versions '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_get_versions_content
Get content for the navigation property versions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content.
read - Parameters
- drive_id, drive_item_id, drive_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_get_versions_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_get_versions_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_update_versions_content
Update content for the navigation property versions in drives Official Microsoft Graph v1.0 endpoint: PUT /drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content.
write - Parameters
- drive_id, drive_item_id, drive_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_update_versions_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_update_versions_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_versions_content
Delete content for the navigation property versions in drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content.
write - Parameters
- drive_id, drive_item_id, drive_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_items_delete_versions_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_items_delete_versions_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_versions_drive_item_version_restore_version
Invoke action restoreVersion Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion.
read - Parameters
- drive_id, drive_item_id, drive_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_items_drive_item_versions_drive_item_version_restore_version '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_items_drive_item_versions_drive_item_version_restore_version '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","drive_item_version_id":"example_drive_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_list
Get list from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_list '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_list '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_update_list
Update the navigation property list in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_update_list '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_update_list '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_delete_list
Delete navigation property list for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_delete_list '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_delete_list '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_list_columns
Get columns from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/columns.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_list_columns '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_list_columns '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_create_columns
Create new navigation property to columns for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/columns.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_create_columns '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_create_columns '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_columns_get_count_5e2e
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/columns/$count.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_columns_get_count_5e2e '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_columns_get_count_5e2e '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_get_columns
Get columns from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/columns/{columnDefinition-id}.
read - Parameters
- drive_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_get_columns '{"drive_id":"example_drive_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_get_columns '{"drive_id":"example_drive_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_update_columns
Update the navigation property columns in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/columns/{columnDefinition-id}.
write - Parameters
- drive_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_update_columns '{"drive_id":"example_drive_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_update_columns '{"drive_id":"example_drive_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_delete_columns
Delete navigation property columns for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/columns/{columnDefinition-id}.
write - Parameters
- drive_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_delete_columns '{"drive_id":"example_drive_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_delete_columns '{"drive_id":"example_drive_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_columns_get_source_column
Get sourceColumn from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn.
read - Parameters
- drive_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_columns_get_source_column '{"drive_id":"example_drive_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_columns_get_source_column '{"drive_id":"example_drive_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_list_content_types
Get contentTypes from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_list_content_types '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_list_content_types '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_create_content_types
Create new navigation property to contentTypes for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/contentTypes.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_create_content_types '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_create_content_types '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_count_5838
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/$count.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_count_5838 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_get_count_5838 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_add_copy
Invoke action addCopy Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/contentTypes/addCopy.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_add_copy '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_content_types_add_copy '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_add_copy_from_content_type_hub
Invoke action addCopyFromContentTypeHub Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_add_copy_from_content_type_hub '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_content_types_add_copy_from_content_type_hub '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_get_compatible_hub_content_types
Invoke function getCompatibleHubContentTypes Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes().
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_get_compatible_hub_content_types '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_content_types_get_compatible_hub_content_types '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_get_content_types
Get contentTypes from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_get_content_types '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_get_content_types '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_update_content_types
Update the navigation property contentTypes in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/contentTypes/{contentType-id}.
write - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_update_content_types '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_update_content_types '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_delete_content_types
Delete navigation property contentTypes for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/contentTypes/{contentType-id}.
write - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_delete_content_types '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_delete_content_types '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_content_type_associate_with_hub_sites
Invoke action associateWithHubSites Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_content_type_associate_with_hub_sites '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_content_types_content_type_associate_with_hub_sites '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_base
Get base from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/base.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_base '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_get_base '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_list_base_types
Get baseTypes from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_list_base_types '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_list_base_types '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_base_types_get_count_95ae
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_base_types_get_count_95ae '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_base_types_get_count_95ae '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_base_types
Get baseTypes from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}.
read - Parameters
- drive_id, content_type_id, content_type_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_base_types '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","content_type_id1":"example_content_type_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_get_base_types '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","content_type_id1":"example_content_type_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_list_column_links
Get columnLinks from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_list_column_links '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_list_column_links '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_create_column_links
Create new navigation property to columnLinks for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks.
write - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_create_column_links '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_create_column_links '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_column_links_get_count_e5f5
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_column_links_get_count_e5f5 '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_column_links_get_count_e5f5 '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_column_links
Get columnLinks from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
read - Parameters
- drive_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_column_links '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_get_column_links '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_update_column_links
Update the navigation property columnLinks in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
write - Parameters
- drive_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_update_column_links '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_update_column_links '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_delete_column_links
Delete navigation property columnLinks for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
write - Parameters
- drive_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_delete_column_links '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_delete_column_links '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_list_column_positions
Get columnPositions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_list_column_positions '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_list_column_positions '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_column_positions_get_count_6cb6
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_column_positions_get_count_6cb6 '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_column_positions_get_count_6cb6 '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_column_positions
Get columnPositions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}.
read - Parameters
- drive_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_column_positions '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_get_column_positions '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_list_columns
Get columns from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/columns.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_list_columns '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_list_columns '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_create_columns
Create new navigation property to columns for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/contentTypes/{contentType-id}/columns.
write - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_create_columns '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_create_columns '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_columns_get_count_4b13
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_columns_get_count_4b13 '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_columns_get_count_4b13 '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_columns
Get columns from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
read - Parameters
- drive_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_get_columns '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_get_columns '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_update_columns
Update the navigation property columns in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
write - Parameters
- drive_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_update_columns '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_update_columns '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_delete_columns
Delete navigation property columns for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
write - Parameters
- drive_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_delete_columns '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_delete_columns '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_columns_get_source_column
Get sourceColumn from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn.
read - Parameters
- drive_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_content_types_columns_get_source_column '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_content_types_columns_get_source_column '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_content_type_copy_to_default_content_location
Invoke action copyToDefaultContentLocation Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_content_type_copy_to_default_content_location '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_content_types_content_type_copy_to_default_content_location '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_content_type_is_published
Invoke function isPublished Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished().
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_content_type_is_published '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_content_types_content_type_is_published '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_content_type_publish
Invoke action publish Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/contentTypes/{contentType-id}/publish.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_content_type_publish '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_content_types_content_type_publish '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_content_type_unpublish
Invoke action unpublish Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish.
read - Parameters
- drive_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_content_types_content_type_unpublish '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_content_types_content_type_unpublish '{"drive_id":"example_drive_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_get_drive
Get drive from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/drive.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_get_drive '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_get_drive '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_list_items
Get items from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_list_items '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_list_items '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_create_items
Create new navigation property to items for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/items.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_create_items '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_create_items '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_count_e46a
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/$count.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_count_e46a '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_get_count_e46a '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_items_delta_fa14
Invoke function delta Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/delta().
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_items_delta_fa14 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_items_delta_fa14 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_get_items
Get items from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}.
read - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_get_items '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_get_items '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_update_items
Update the navigation property items in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/items/{listItem-id}.
write - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_update_items '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_update_items '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_delete_items
Delete navigation property items for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/items/{listItem-id}.
write - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_delete_items '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_delete_items '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_items_list_item_create_link
Invoke action createLink Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/items/{listItem-id}/createLink.
write - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_items_list_item_create_link '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_items_list_item_create_link '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_list_document_set_versions
Get documentSetVersions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/documentSetVersions.
read - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_list_document_set_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_list_document_set_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_create_document_set_versions
Create new navigation property to documentSetVersions for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/items/{listItem-id}/documentSetVersions.
write - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_create_document_set_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_create_document_set_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_document_set_versions_get_count_7796
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count.
read - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_document_set_versions_get_count_7796 '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_document_set_versions_get_count_7796 '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_document_set_versions
Get documentSetVersions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}.
read - Parameters
- drive_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_document_set_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_get_document_set_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_update_document_set_versions
Update the navigation property documentSetVersions in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}.
write - Parameters
- drive_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_update_document_set_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_update_document_set_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_delete_document_set_versions
Delete navigation property documentSetVersions for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}.
write - Parameters
- drive_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_delete_document_set_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_delete_document_set_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_document_set_versions_get_fields
Get fields from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields.
read - Parameters
- drive_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_document_set_versions_get_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_document_set_versions_get_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_document_set_versions_update_fields
Update the navigation property fields in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields.
write - Parameters
- drive_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_document_set_versions_update_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_document_set_versions_update_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_document_set_versions_delete_fields
Delete navigation property fields for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields.
write - Parameters
- drive_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_document_set_versions_delete_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_document_set_versions_delete_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_items_list_item_document_set_versions_document_set_version_restore
Invoke action restore Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore.
read - Parameters
- drive_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_items_list_item_document_set_versions_document_set_version_restore '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_items_list_item_document_set_versions_document_set_version_restore '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_drive_item
Get driveItem from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/driveItem.
read - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_drive_item '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_get_drive_item '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_drive_item_content
Get content for the navigation property driveItem from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/driveItem/content.
read - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_drive_item_content '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_get_drive_item_content '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_update_drive_item_content
Update content for the navigation property driveItem in drives Official Microsoft Graph v1.0 endpoint: PUT /drives/{drive-id}/list/items/{listItem-id}/driveItem/content.
write - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_update_drive_item_content '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_update_drive_item_content '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_delete_drive_item_content
Delete content for the navigation property driveItem in drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/items/{listItem-id}/driveItem/content.
write - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_delete_drive_item_content '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_delete_drive_item_content '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_fields
Get fields from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/fields.
read - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_get_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_update_fields
Update the navigation property fields in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/items/{listItem-id}/fields.
write - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_update_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_update_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_delete_fields
Delete navigation property fields for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/items/{listItem-id}/fields.
write - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_delete_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_delete_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_items_list_item_get_activities_by_interval_4c35
Invoke function getActivitiesByInterval Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval().
read - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_items_list_item_get_activities_by_interval_4c35 '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_items_list_item_get_activities_by_interval_4c35 '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_list_versions
Get versions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/versions.
read - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_list_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_list_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_create_versions
Create new navigation property to versions for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/items/{listItem-id}/versions.
write - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_create_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_create_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_versions_get_count_c6e1
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/versions/$count.
read - Parameters
- drive_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_versions_get_count_c6e1 '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_versions_get_count_c6e1 '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_versions
Get versions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}.
read - Parameters
- drive_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_get_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_get_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_update_versions
Update the navigation property versions in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}.
write - Parameters
- drive_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_update_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_update_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_delete_versions
Delete navigation property versions for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}.
write - Parameters
- drive_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_delete_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_delete_versions '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_versions_get_fields
Get fields from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields.
read - Parameters
- drive_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_versions_get_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_versions_get_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_versions_update_fields
Update the navigation property fields in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields.
write - Parameters
- drive_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_versions_update_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_versions_update_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_items_versions_delete_fields
Delete navigation property fields for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields.
write - Parameters
- drive_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_items_versions_delete_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_items_versions_delete_fields '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_items_list_item_versions_list_item_version_restore_version
Invoke action restoreVersion Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion.
read - Parameters
- drive_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_items_list_item_versions_list_item_version_restore_version '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_items_list_item_versions_list_item_version_restore_version '{"drive_id":"example_drive_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_list_operations
Get operations from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/operations.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_list_operations '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_list_operations '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_create_operations
Create new navigation property to operations for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/operations.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_create_operations '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_create_operations '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_operations_get_count_e8e7
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/operations/$count.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_operations_get_count_e8e7 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_operations_get_count_e8e7 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_get_operations
Get operations from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/operations/{richLongRunningOperation-id}.
read - Parameters
- drive_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_get_operations '{"drive_id":"example_drive_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_get_operations '{"drive_id":"example_drive_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_update_operations
Update the navigation property operations in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/operations/{richLongRunningOperation-id}.
write - Parameters
- drive_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_update_operations '{"drive_id":"example_drive_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_update_operations '{"drive_id":"example_drive_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_delete_operations
Delete navigation property operations for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/operations/{richLongRunningOperation-id}.
write - Parameters
- drive_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_delete_operations '{"drive_id":"example_drive_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_delete_operations '{"drive_id":"example_drive_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_list_subscriptions
Get subscriptions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/subscriptions.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_list_subscriptions '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_list_subscriptions '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_create_subscriptions
Create new navigation property to subscriptions for drives Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/subscriptions.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_create_subscriptions '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_create_subscriptions '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_subscriptions_get_count_59f5
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/subscriptions/$count.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_subscriptions_get_count_59f5 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_subscriptions_get_count_59f5 '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_get_subscriptions
Get subscriptions from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/list/subscriptions/{subscription-id}.
read - Parameters
- drive_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_get_subscriptions '{"drive_id":"example_drive_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_get_subscriptions '{"drive_id":"example_drive_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_update_subscriptions
Update the navigation property subscriptions in drives Official Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/list/subscriptions/{subscription-id}.
write - Parameters
- drive_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_update_subscriptions '{"drive_id":"example_drive_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_update_subscriptions '{"drive_id":"example_drive_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_delete_subscriptions
Delete navigation property subscriptions for drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/list/subscriptions/{subscription-id}.
write - Parameters
- drive_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_delete_subscriptions '{"drive_id":"example_drive_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_delete_subscriptions '{"drive_id":"example_drive_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_subscriptions_subscription_reauthorize
Invoke action reauthorize Official Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize.
read - Parameters
- drive_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_list_subscriptions_subscription_reauthorize '{"drive_id":"example_drive_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_list_subscriptions_subscription_reauthorize '{"drive_id":"example_drive_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_recent
Invoke function recent Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/recent().
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_recent '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_recent '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_root
Get root from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/root.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_root '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_root '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_root_content
Get content for the navigation property root from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/root/content.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_root_content '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_root_content '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_update_root_content
Update content for the navigation property root in drives Official Microsoft Graph v1.0 endpoint: PUT /drives/{drive-id}/root/content.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_update_root_content '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_update_root_content '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_delete_root_content
Delete content for the navigation property root in drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/root/content.
write - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_delete_root_content '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_delete_root_content '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_drive_shared_with_me
Invoke function sharedWithMe Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/sharedWithMe().
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_drive_shared_with_me '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_drive_shared_with_me '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_list_special
Get special from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/special.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_list_special '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_list_special '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_special_get_count_6a2e
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/special/$count.
read - Parameters
- drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_special_get_count_6a2e '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_special_get_count_6a2e '{"drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_special
Get special from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/special/{driveItem-id}.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_special '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_special '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_get_special_content
Get content for the navigation property special from drives Official Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/special/{driveItem-id}/content.
read - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_get_special_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_get_special_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_update_special_content
Update content for the navigation property special in drives Official Microsoft Graph v1.0 endpoint: PUT /drives/{drive-id}/special/{driveItem-id}/content.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_update_special_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_update_special_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_drives_delete_special_content
Delete content for the navigation property special in drives Official Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/special/{driveItem-id}/content.
write - Parameters
- drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_drives_delete_special_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_drives_delete_special_content '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_shared_drive_item
Accessing shared DriveItems Official Microsoft Graph v1.0 endpoint: GET /shares.
read - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_shared_drive_item '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_shared_drive_item '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_create_shared_drive_item
Add new entity to shares Official Microsoft Graph v1.0 endpoint: POST /shares.
write - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_create_shared_drive_item '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_create_shared_drive_item '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_count_778c
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/$count.
read - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_count_778c '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_count_778c '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_get_shared_drive_item
Accessing shared DriveItems Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_get_shared_drive_item '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_get_shared_drive_item '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_update_shared_drive_item
Update entity in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_update_shared_drive_item '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_update_shared_drive_item '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_delete_shared_drive_item
Delete entity from shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_delete_shared_drive_item '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_delete_shared_drive_item '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_drive_item
Accessing shared DriveItems Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/driveItem.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_drive_item '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_drive_item '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_drive_item_content
Get content for the navigation property driveItem from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/driveItem/content.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_update_drive_item_content
Update content for the navigation property driveItem in shares Official Microsoft Graph v1.0 endpoint: PUT /shares/{sharedDriveItem-id}/driveItem/content.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_update_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_update_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_delete_drive_item_content
Delete content for the navigation property driveItem in shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/driveItem/content.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_delete_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_delete_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items
Get items from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/items.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_items_get_count_245c
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/items/$count.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_items_get_count_245c '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_items_get_count_245c '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_items
Get items from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/items/{driveItem-id}.
read - Parameters
- shared_drive_item_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_items '{"shared_drive_item_id":"example_shared_drive_item_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_items '{"shared_drive_item_id":"example_shared_drive_item_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_items_content
Get content for the navigation property items from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/items/{driveItem-id}/content.
read - Parameters
- shared_drive_item_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_items_content '{"shared_drive_item_id":"example_shared_drive_item_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_items_content '{"shared_drive_item_id":"example_shared_drive_item_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_update_items_content
Update content for the navigation property items in shares Official Microsoft Graph v1.0 endpoint: PUT /shares/{sharedDriveItem-id}/items/{driveItem-id}/content.
write - Parameters
- shared_drive_item_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_update_items_content '{"shared_drive_item_id":"example_shared_drive_item_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_update_items_content '{"shared_drive_item_id":"example_shared_drive_item_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_delete_items_content
Delete content for the navigation property items in shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/items/{driveItem-id}/content.
write - Parameters
- shared_drive_item_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_delete_items_content '{"shared_drive_item_id":"example_shared_drive_item_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_delete_items_content '{"shared_drive_item_id":"example_shared_drive_item_id","drive_item_id":"example_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_list
Get list from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_list '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_list '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_update_list
Update the navigation property list in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_update_list '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_update_list '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_delete_list
Delete navigation property list for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_delete_list '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_delete_list '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_list_columns
Get columns from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/columns.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_list_columns '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_list_columns '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_create_columns
Create new navigation property to columns for shares Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/columns.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_create_columns '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_create_columns '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_columns_get_count_b936
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/columns/$count.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_columns_get_count_b936 '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_columns_get_count_b936 '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_get_columns
Get columns from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}.
read - Parameters
- shared_drive_item_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_get_columns '{"shared_drive_item_id":"example_shared_drive_item_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_get_columns '{"shared_drive_item_id":"example_shared_drive_item_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_update_columns
Update the navigation property columns in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}.
write - Parameters
- shared_drive_item_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_update_columns '{"shared_drive_item_id":"example_shared_drive_item_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_update_columns '{"shared_drive_item_id":"example_shared_drive_item_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_delete_columns
Delete navigation property columns for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}.
write - Parameters
- shared_drive_item_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_delete_columns '{"shared_drive_item_id":"example_shared_drive_item_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_delete_columns '{"shared_drive_item_id":"example_shared_drive_item_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_columns_get_source_column
Get sourceColumn from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn.
read - Parameters
- shared_drive_item_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_columns_get_source_column '{"shared_drive_item_id":"example_shared_drive_item_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_columns_get_source_column '{"shared_drive_item_id":"example_shared_drive_item_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_list_content_types
Get contentTypes from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_list_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_list_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_create_content_types
Create new navigation property to contentTypes for shares Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/contentTypes.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_create_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_create_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_count_70f5
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/$count.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_count_70f5 '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_get_count_70f5 '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_add_copy
Invoke action addCopy Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/contentTypes/addCopy.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_add_copy '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_content_types_add_copy '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_add_copy_from_content_type_hub
Invoke action addCopyFromContentTypeHub Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/contentTypes/addCopyFromContentTypeHub.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_add_copy_from_content_type_hub '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_content_types_add_copy_from_content_type_hub '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_get_compatible_hub_content_types
Invoke function getCompatibleHubContentTypes Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/getCompatibleHubContentTypes().
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_get_compatible_hub_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_content_types_get_compatible_hub_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_get_content_types
Get contentTypes from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_get_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_get_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_update_content_types
Update the navigation property contentTypes in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}.
write - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_update_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_update_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_delete_content_types
Delete navigation property contentTypes for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}.
write - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_delete_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_delete_content_types '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_associate_with_hub_sites
Invoke action associateWithHubSites Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/associateWithHubSites.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_associate_with_hub_sites '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_associate_with_hub_sites '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_base
Get base from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_base '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_get_base '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_list_base_types
Get baseTypes from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_list_base_types '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_list_base_types '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_base_types_get_count_f23a
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$count.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_base_types_get_count_f23a '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_base_types_get_count_f23a '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_base_types
Get baseTypes from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}.
read - Parameters
- shared_drive_item_id, content_type_id, content_type_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_base_types '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","content_type_id1":"example_content_type_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_get_base_types '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","content_type_id1":"example_content_type_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_list_column_links
Get columnLinks from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_list_column_links '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_list_column_links '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_create_column_links
Create new navigation property to columnLinks for shares Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks.
write - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_create_column_links '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_create_column_links '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_column_links_get_count_a211
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/$count.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_column_links_get_count_a211 '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_column_links_get_count_a211 '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_column_links
Get columnLinks from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
read - Parameters
- shared_drive_item_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_column_links '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_get_column_links '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_update_column_links
Update the navigation property columnLinks in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
write - Parameters
- shared_drive_item_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_update_column_links '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_update_column_links '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_delete_column_links
Delete navigation property columnLinks for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
write - Parameters
- shared_drive_item_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_delete_column_links '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_delete_column_links '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_list_column_positions
Get columnPositions from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_list_column_positions '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_list_column_positions '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_column_positions_get_count_1b55
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$count.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_column_positions_get_count_1b55 '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_column_positions_get_count_1b55 '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_column_positions
Get columnPositions from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}.
read - Parameters
- shared_drive_item_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_column_positions '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_get_column_positions '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_list_columns
Get columns from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_list_columns '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_list_columns '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_create_columns
Create new navigation property to columns for shares Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns.
write - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_create_columns '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_create_columns '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_columns_get_count_db38
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/$count.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_columns_get_count_db38 '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_columns_get_count_db38 '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_columns
Get columns from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
read - Parameters
- shared_drive_item_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_get_columns '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_get_columns '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_update_columns
Update the navigation property columns in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
write - Parameters
- shared_drive_item_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_update_columns '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_update_columns '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_delete_columns
Delete navigation property columns for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
write - Parameters
- shared_drive_item_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_delete_columns '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_delete_columns '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_columns_get_source_column
Get sourceColumn from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn.
read - Parameters
- shared_drive_item_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_content_types_columns_get_source_column '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_content_types_columns_get_source_column '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_copy_to_default_content_location
Invoke action copyToDefaultContentLocation Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_copy_to_default_content_location '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_copy_to_default_content_location '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_is_published
Invoke function isPublished Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/isPublished().
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_is_published '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_is_published '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_publish
Invoke action publish Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/publish.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_publish '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_publish '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_unpublish
Invoke action unpublish Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/unpublish.
read - Parameters
- shared_drive_item_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_unpublish '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_content_types_content_type_unpublish '{"shared_drive_item_id":"example_shared_drive_item_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_get_drive
Get drive from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/drive.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_get_drive '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_get_drive '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_list_items
Get items from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_list_items '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_list_items '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_create_items
Create new navigation property to items for shares Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/items.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_create_items '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_create_items '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_items_delta_fa14
Invoke function delta Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/delta().
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_items_delta_fa14 '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_items_delta_fa14 '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_get_items
Get items from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}.
read - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_get_items '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_get_items '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_update_items
Update the navigation property items in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/items/{listItem-id}.
write - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_update_items '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_update_items '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_delete_items
Delete navigation property items for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/items/{listItem-id}.
write - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_delete_items '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_delete_items '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_create_link
Invoke action createLink Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/items/{listItem-id}/createLink.
write - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_create_link '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_create_link '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_list_document_set_versions
Get documentSetVersions from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions.
read - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_list_document_set_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_list_document_set_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_create_document_set_versions
Create new navigation property to documentSetVersions for shares Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions.
write - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_create_document_set_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_create_document_set_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_document_set_versions_get_count_172d
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/$count.
read - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_document_set_versions_get_count_172d '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_document_set_versions_get_count_172d '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_get_document_set_versions
Get documentSetVersions from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}.
read - Parameters
- shared_drive_item_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_get_document_set_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_get_document_set_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_update_document_set_versions
Update the navigation property documentSetVersions in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}.
write - Parameters
- shared_drive_item_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_update_document_set_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_update_document_set_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_delete_document_set_versions
Delete navigation property documentSetVersions for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}.
write - Parameters
- shared_drive_item_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_delete_document_set_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_delete_document_set_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_document_set_versions_get_fields
Get fields from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields.
read - Parameters
- shared_drive_item_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_document_set_versions_get_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_document_set_versions_get_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_document_set_versions_update_fields
Update the navigation property fields in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields.
write - Parameters
- shared_drive_item_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_document_set_versions_update_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_document_set_versions_update_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_document_set_versions_delete_fields
Delete navigation property fields for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields.
write - Parameters
- shared_drive_item_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_document_set_versions_delete_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_document_set_versions_delete_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_document_set_versions_document_set_version_restore
Invoke action restore Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore.
read - Parameters
- shared_drive_item_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_document_set_versions_document_set_version_restore '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_document_set_versions_document_set_version_restore '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_get_drive_item
Get driveItem from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem.
read - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_get_drive_item '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_get_drive_item '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_get_drive_item_content
Get content for the navigation property driveItem from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content.
read - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_get_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_get_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_update_drive_item_content
Update content for the navigation property driveItem in shares Official Microsoft Graph v1.0 endpoint: PUT /shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content.
write - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_update_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_update_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_delete_drive_item_content
Delete content for the navigation property driveItem in shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content.
write - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_delete_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_delete_drive_item_content '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_get_fields
Get fields from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields.
read - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_get_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_get_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_update_fields
Update the navigation property fields in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields.
write - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_update_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_update_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_delete_fields
Delete navigation property fields for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields.
write - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_delete_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_delete_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_get_activities_by_interval_4c35
Invoke function getActivitiesByInterval Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/getActivitiesByInterval().
read - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_get_activities_by_interval_4c35 '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_get_activities_by_interval_4c35 '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_list_versions
Get versions from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions.
read - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_list_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_list_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_create_versions
Create new navigation property to versions for shares Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions.
write - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_create_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_create_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_versions_get_count_0c45
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/$count.
read - Parameters
- shared_drive_item_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_versions_get_count_0c45 '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_versions_get_count_0c45 '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_get_versions
Get versions from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}.
read - Parameters
- shared_drive_item_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_get_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_get_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_update_versions
Update the navigation property versions in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}.
write - Parameters
- shared_drive_item_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_update_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_update_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_delete_versions
Delete navigation property versions for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}.
write - Parameters
- shared_drive_item_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_delete_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_delete_versions '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_versions_get_fields
Get fields from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields.
read - Parameters
- shared_drive_item_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_versions_get_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_versions_get_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_versions_update_fields
Update the navigation property fields in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields.
write - Parameters
- shared_drive_item_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_versions_update_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_versions_update_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_items_versions_delete_fields
Delete navigation property fields for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields.
write - Parameters
- shared_drive_item_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_items_versions_delete_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_items_versions_delete_fields '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_versions_list_item_version_restore_version
Invoke action restoreVersion Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion.
read - Parameters
- shared_drive_item_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_versions_list_item_version_restore_version '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_items_list_item_versions_list_item_version_restore_version '{"shared_drive_item_id":"example_shared_drive_item_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_list_operations
Get operations from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/operations.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_list_operations '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_list_operations '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_create_operations
Create new navigation property to operations for shares Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/operations.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_create_operations '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_create_operations '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_operations_get_count_5f90
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/operations/$count.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_operations_get_count_5f90 '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_operations_get_count_5f90 '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_get_operations
Get operations from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}.
read - Parameters
- shared_drive_item_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_get_operations '{"shared_drive_item_id":"example_shared_drive_item_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_get_operations '{"shared_drive_item_id":"example_shared_drive_item_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_update_operations
Update the navigation property operations in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}.
write - Parameters
- shared_drive_item_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_update_operations '{"shared_drive_item_id":"example_shared_drive_item_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_update_operations '{"shared_drive_item_id":"example_shared_drive_item_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_delete_operations
Delete navigation property operations for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}.
write - Parameters
- shared_drive_item_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_delete_operations '{"shared_drive_item_id":"example_shared_drive_item_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_delete_operations '{"shared_drive_item_id":"example_shared_drive_item_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_list_subscriptions
Get subscriptions from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/subscriptions.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_list_subscriptions '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_list_subscriptions '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_create_subscriptions
Create new navigation property to subscriptions for shares Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/subscriptions.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_create_subscriptions '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_create_subscriptions '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_subscriptions_get_count_4363
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/subscriptions/$count.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_subscriptions_get_count_4363 '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_subscriptions_get_count_4363 '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_get_subscriptions
Get subscriptions from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}.
read - Parameters
- shared_drive_item_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_get_subscriptions '{"shared_drive_item_id":"example_shared_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_get_subscriptions '{"shared_drive_item_id":"example_shared_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_update_subscriptions
Update the navigation property subscriptions in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}.
write - Parameters
- shared_drive_item_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_update_subscriptions '{"shared_drive_item_id":"example_shared_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_update_subscriptions '{"shared_drive_item_id":"example_shared_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_list_delete_subscriptions
Delete navigation property subscriptions for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}.
write - Parameters
- shared_drive_item_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_list_delete_subscriptions '{"shared_drive_item_id":"example_shared_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_list_delete_subscriptions '{"shared_drive_item_id":"example_shared_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_subscriptions_subscription_reauthorize
Invoke action reauthorize Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}/reauthorize.
read - Parameters
- shared_drive_item_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_list_subscriptions_subscription_reauthorize '{"shared_drive_item_id":"example_shared_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_list_subscriptions_subscription_reauthorize '{"shared_drive_item_id":"example_shared_drive_item_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_list_item
Get listItem from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/listItem.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_list_item '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_list_item '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_permission
Get permission from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/permission.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_permission '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_permission '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_update_permission
Update the navigation property permission in shares Official Microsoft Graph v1.0 endpoint: PATCH /shares/{sharedDriveItem-id}/permission.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_update_permission '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_update_permission '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_delete_permission
Delete navigation property permission for shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/permission.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_delete_permission '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_delete_permission '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_permission_grant
Invoke action grant Official Microsoft Graph v1.0 endpoint: POST /shares/{sharedDriveItem-id}/permission/grant.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_shared_drive_item_permission_grant '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_shared_drive_item_permission_grant '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_root
Get root from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/root.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_root '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_root '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_root_content
Get content for the navigation property root from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/root/content.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_root_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_root_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_update_root_content
Update content for the navigation property root in shares Official Microsoft Graph v1.0 endpoint: PUT /shares/{sharedDriveItem-id}/root/content.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_update_root_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_update_root_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_delete_root_content
Delete content for the navigation property root in shares Official Microsoft Graph v1.0 endpoint: DELETE /shares/{sharedDriveItem-id}/root/content.
write - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_delete_root_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_delete_root_content '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_shares_get_site
Get site from shares Official Microsoft Graph v1.0 endpoint: GET /shares/{sharedDriveItem-id}/site.
read - Parameters
- shared_drive_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_shares_get_site '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_shares_get_site '{"shared_drive_item_id":"example_shared_drive_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_list_site
List sites Official Microsoft Graph v1.0 endpoint: GET /sites.
read - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_list_site '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_list_site '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_count_6254
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/$count.
read - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_count_6254 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_count_6254 '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_sites_add
Invoke action add Official Microsoft Graph v1.0 endpoint: POST /sites/add.
read - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_add '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_add '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_sites_delta
Invoke function delta Official Microsoft Graph v1.0 endpoint: GET /sites/delta().
read - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_delta '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_all_sites
Invoke function getAllSites Official Microsoft Graph v1.0 endpoint: GET /sites/getAllSites().
read - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_all_sites '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_all_sites '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_sites_remove
Invoke action remove Official Microsoft Graph v1.0 endpoint: POST /sites/remove.
read - Parameters
- top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_remove '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_remove '{"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand","count":true}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_get_site
Get a site resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_get_site '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_get_site '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_update_site
Update entity in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_update_site '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_update_site '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_columns
List columns in a site Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/columns.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_columns '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_columns '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_create_columns
Create a columnDefinition in a site Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/columns.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_create_columns '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_create_columns '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_columns_get_count_a8bb
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/columns/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_columns_get_count_a8bb '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_columns_get_count_a8bb '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_columns
Get columns from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/columns/{columnDefinition-id}.
read - Parameters
- site_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_columns '{"site_id":"example_site_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_columns '{"site_id":"example_site_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_update_columns
Update the navigation property columns in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/columns/{columnDefinition-id}.
write - Parameters
- site_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_update_columns '{"site_id":"example_site_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_update_columns '{"site_id":"example_site_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_delete_columns
Delete navigation property columns for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/columns/{columnDefinition-id}.
write - Parameters
- site_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_delete_columns '{"site_id":"example_site_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_delete_columns '{"site_id":"example_site_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_columns_get_source_column
Get sourceColumn from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/columns/{columnDefinition-id}/sourceColumn.
read - Parameters
- site_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_columns_get_source_column '{"site_id":"example_site_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_columns_get_source_column '{"site_id":"example_site_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_content_types
List contentTypes in a site Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_content_types '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_content_types '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_create_content_types
Create a content type Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/contentTypes.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_create_content_types '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_create_content_types '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_count_50aa
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_count_50aa '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_get_count_50aa '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_add_copy
Invoke action addCopy Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/contentTypes/addCopy.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_add_copy '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_content_types_add_copy '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_add_copy_from_content_type_hub
Invoke action addCopyFromContentTypeHub Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/contentTypes/addCopyFromContentTypeHub.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_add_copy_from_content_type_hub '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_content_types_add_copy_from_content_type_hub '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_get_compatible_hub_content_types
Invoke function getCompatibleHubContentTypes Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/getCompatibleHubContentTypes().
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_get_compatible_hub_content_types '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_content_types_get_compatible_hub_content_types '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_content_types
Get contentType Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_content_types '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_content_types '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_update_content_types
Update contentType Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/contentTypes/{contentType-id}.
write - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_update_content_types '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_update_content_types '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_delete_content_types
Delete contentType Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/contentTypes/{contentType-id}.
write - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_delete_content_types '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_delete_content_types '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_content_type_associate_with_hub_sites
Invoke action associateWithHubSites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_content_type_associate_with_hub_sites '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_content_types_content_type_associate_with_hub_sites '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_base
Get base from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/base.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_base '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_get_base '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_list_base_types
Get baseTypes from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/baseTypes.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_list_base_types '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_list_base_types '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_base_types_get_count_6b07
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_base_types_get_count_6b07 '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_base_types_get_count_6b07 '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_base_types
Get baseTypes from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}.
read - Parameters
- site_id, content_type_id, content_type_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_base_types '{"site_id":"example_site_id","content_type_id":"example_content_type_id","content_type_id1":"example_content_type_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_get_base_types '{"site_id":"example_site_id","content_type_id":"example_content_type_id","content_type_id1":"example_content_type_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_list_column_links
Get columnLinks from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/columnLinks.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_list_column_links '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_list_column_links '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_create_column_links
Create new navigation property to columnLinks for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/contentTypes/{contentType-id}/columnLinks.
write - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_create_column_links '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_create_column_links '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_column_links_get_count_7bc1
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_column_links_get_count_7bc1 '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_column_links_get_count_7bc1 '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_column_links
Get columnLinks from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
read - Parameters
- site_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_column_links '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_get_column_links '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_update_column_links
Update the navigation property columnLinks in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
write - Parameters
- site_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_update_column_links '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_update_column_links '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_delete_column_links
Delete navigation property columnLinks for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
write - Parameters
- site_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_delete_column_links '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_delete_column_links '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_list_column_positions
Get columnPositions from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/columnPositions.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_list_column_positions '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_list_column_positions '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_column_positions_get_count_dea9
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_column_positions_get_count_dea9 '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_column_positions_get_count_dea9 '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_column_positions
Get columnPositions from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}.
read - Parameters
- site_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_column_positions '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_get_column_positions '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_list_columns
List columnDefinitions in a content type Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/columns.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_list_columns '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_list_columns '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_create_columns
Create a columnDefinition in a content type Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/contentTypes/{contentType-id}/columns.
write - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_create_columns '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_create_columns '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_columns_get_count_896b
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/columns/$count.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_columns_get_count_896b '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_columns_get_count_896b '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_columns
Get columnDefinition Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
read - Parameters
- site_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_get_columns '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_get_columns '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_update_columns
Update columnDefinition Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
write - Parameters
- site_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_update_columns '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_update_columns '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_delete_columns
Delete columnDefinition Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
write - Parameters
- site_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_delete_columns '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_delete_columns '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_content_types_columns_get_source_column
Get sourceColumn from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn.
read - Parameters
- site_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_content_types_columns_get_source_column '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_content_types_columns_get_source_column '{"site_id":"example_site_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_content_type_copy_to_default_content_location
Invoke action copyToDefaultContentLocation Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_content_type_copy_to_default_content_location '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_content_types_content_type_copy_to_default_content_location '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_content_type_is_published
Invoke function isPublished Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/contentTypes/{contentType-id}/isPublished().
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_content_type_is_published '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_content_types_content_type_is_published '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_content_type_publish
Invoke action publish Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/contentTypes/{contentType-id}/publish.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_content_type_publish '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_content_types_content_type_publish '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_content_type_unpublish
Invoke action unpublish Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/contentTypes/{contentType-id}/unpublish.
read - Parameters
- site_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_content_types_content_type_unpublish '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_content_types_content_type_unpublish '{"site_id":"example_site_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_drive
Get drive from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/drive.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_drive '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_drive '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_drives
Get drives from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/drives.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_drives '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_drives '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_drives_get_count_5071
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/drives/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_drives_get_count_5071 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_drives_get_count_5071 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_drives
Get drives from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/drives/{drive-id}.
read - Parameters
- site_id, drive_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_drives '{"site_id":"example_site_id","drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_drives '{"site_id":"example_site_id","drive_id":"example_drive_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_external_columns
Get externalColumns from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/externalColumns.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_external_columns '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_external_columns '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_external_columns_get_count_3855
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/externalColumns/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_external_columns_get_count_3855 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_external_columns_get_count_3855 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_external_columns
Get externalColumns from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/externalColumns/{columnDefinition-id}.
read - Parameters
- site_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_external_columns '{"site_id":"example_site_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_external_columns '{"site_id":"example_site_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_get_activities_by_interval_4c35
Invoke function getActivitiesByInterval Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/getActivitiesByInterval().
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_get_activities_by_interval_4c35 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_get_activities_by_interval_4c35 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_by_path_create_columns
Create new navigation property to columns for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/getActivitiesByInterval().
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_by_path_create_columns '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_by_path_create_columns '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_by_path_update_analytics
Update the navigation property analytics in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/getActivitiesByInterval().
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_by_path_update_analytics '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_by_path_update_analytics '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_by_path_delete_analytics
Delete navigation property analytics for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/getActivitiesByInterval().
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_by_path_delete_analytics '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_by_path_delete_analytics '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_items
Get items from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/items.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_items '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_items '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_items_get_count_1b67
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/items/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_items_get_count_1b67 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_items_get_count_1b67 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_items
Get items from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/items/{baseItem-id}.
read - Parameters
- site_id, base_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_items '{"site_id":"example_site_id","base_item_id":"example_base_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_items '{"site_id":"example_site_id","base_item_id":"example_base_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_lists
Get lists in a site Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_lists '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_lists '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_create_lists
Create a new list Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_create_lists '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_create_lists '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_count_e06a
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_count_e06a '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_get_count_e06a '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_lists
Get metadata for a list Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_lists '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_lists '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_update_lists
Update the navigation property lists in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}.
write - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_update_lists '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_update_lists '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_delete_lists
Delete navigation property lists for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}.
write - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_delete_lists '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_delete_lists '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_list_columns
List columnDefinitions in a list Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/columns.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_list_columns '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_list_columns '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_create_columns
Create a columnDefinition in a list Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/columns.
write - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_create_columns '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_create_columns '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_columns_get_count_77c0
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/columns/$count.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_columns_get_count_77c0 '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_columns_get_count_77c0 '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_columns
Get columns from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}.
read - Parameters
- site_id, list_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_columns '{"site_id":"example_site_id","list_id":"example_list_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_get_columns '{"site_id":"example_site_id","list_id":"example_list_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_update_columns
Update the navigation property columns in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}.
write - Parameters
- site_id, list_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_update_columns '{"site_id":"example_site_id","list_id":"example_list_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_update_columns '{"site_id":"example_site_id","list_id":"example_list_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_delete_columns
Delete navigation property columns for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}.
write - Parameters
- site_id, list_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_delete_columns '{"site_id":"example_site_id","list_id":"example_list_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_delete_columns '{"site_id":"example_site_id","list_id":"example_list_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_columns_get_source_column
Get sourceColumn from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn.
read - Parameters
- site_id, list_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_columns_get_source_column '{"site_id":"example_site_id","list_id":"example_list_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_columns_get_source_column '{"site_id":"example_site_id","list_id":"example_list_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_list_content_types
List contentTypes in a list Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_list_content_types '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_list_content_types '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_create_content_types
Create new navigation property to contentTypes for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/contentTypes.
write - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_create_content_types '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_create_content_types '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_count_d8bd
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/$count.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_count_d8bd '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_get_count_d8bd '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_add_copy
Invoke action addCopy Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/contentTypes/addCopy.
write - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_add_copy '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_content_types_add_copy '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_add_copy_from_content_type_hub
Invoke action addCopyFromContentTypeHub Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub.
write - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_add_copy_from_content_type_hub '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_content_types_add_copy_from_content_type_hub '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_get_compatible_hub_content_types
Invoke function getCompatibleHubContentTypes Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes().
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_get_compatible_hub_content_types '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_content_types_get_compatible_hub_content_types '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_content_types
Get contentTypes from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_content_types '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_get_content_types '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_update_content_types
Update the navigation property contentTypes in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}.
write - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_update_content_types '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_update_content_types '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_delete_content_types
Delete navigation property contentTypes for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}.
write - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_delete_content_types '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_delete_content_types '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_content_type_associate_with_hub_sites
Invoke action associateWithHubSites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_content_type_associate_with_hub_sites '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_content_types_content_type_associate_with_hub_sites '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_base
Get base from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_base '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_get_base '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_list_base_types
Get baseTypes from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_list_base_types '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_list_base_types '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_base_types_get_count_8008
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/$count.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_base_types_get_count_8008 '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_base_types_get_count_8008 '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_base_types
Get baseTypes from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}.
read - Parameters
- site_id, list_id, content_type_id, content_type_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_base_types '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","content_type_id1":"example_content_type_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_get_base_types '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","content_type_id1":"example_content_type_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_list_column_links
Get columnLinks from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_list_column_links '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_list_column_links '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_create_column_links
Create new navigation property to columnLinks for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks.
write - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_create_column_links '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_create_column_links '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_column_links_get_count_9230
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_column_links_get_count_9230 '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_column_links_get_count_9230 '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_column_links
Get columnLinks from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
read - Parameters
- site_id, list_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_column_links '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_get_column_links '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_update_column_links
Update the navigation property columnLinks in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
write - Parameters
- site_id, list_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_update_column_links '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_update_column_links '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_delete_column_links
Delete navigation property columnLinks for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}.
write - Parameters
- site_id, list_id, content_type_id, column_link_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_delete_column_links '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_delete_column_links '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_link_id":"example_column_link_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_list_column_positions
Get columnPositions from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_list_column_positions '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_list_column_positions '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_column_positions_get_count_36a3
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_column_positions_get_count_36a3 '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_column_positions_get_count_36a3 '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_column_positions
Get columnPositions from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}.
read - Parameters
- site_id, list_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_column_positions '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_get_column_positions '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_list_columns
Get columns from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_list_columns '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_list_columns '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_create_columns
Create new navigation property to columns for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns.
write - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_create_columns '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_create_columns '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_columns_get_count_9911
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_columns_get_count_9911 '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_columns_get_count_9911 '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_columns
Get columns from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
read - Parameters
- site_id, list_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_get_columns '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_get_columns '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_update_columns
Update the navigation property columns in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
write - Parameters
- site_id, list_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_update_columns '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_update_columns '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_delete_columns
Delete navigation property columns for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}.
write - Parameters
- site_id, list_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_delete_columns '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_delete_columns '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_columns_get_source_column
Get sourceColumn from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn.
read - Parameters
- site_id, list_id, content_type_id, column_definition_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_content_types_columns_get_source_column '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_content_types_columns_get_source_column '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","column_definition_id":"example_column_definition_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_content_type_copy_to_default_content_location
Invoke action copyToDefaultContentLocation Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_content_type_copy_to_default_content_location '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_content_types_content_type_copy_to_default_content_location '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_content_type_is_published
Invoke function isPublished Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished().
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_content_type_is_published '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_content_types_content_type_is_published '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_content_type_publish
Invoke action publish Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_content_type_publish '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_content_types_content_type_publish '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_content_type_unpublish
Invoke action unpublish Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish.
read - Parameters
- site_id, list_id, content_type_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_content_types_content_type_unpublish '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_content_types_content_type_unpublish '{"site_id":"example_site_id","list_id":"example_list_id","content_type_id":"example_content_type_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_drive
Get drive from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/drive.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_drive '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_get_drive '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_list_items
List items Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_list_items '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_list_items '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_create_items
Create a new item in a list Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/items.
write - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_create_items '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_create_items '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_items_delta_fa14
Invoke function delta Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/delta().
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_items_delta_fa14 '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_items_delta_fa14 '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_items
Get listItem Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}.
read - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_items '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_get_items '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_update_items
Update the navigation property items in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/items/{listItem-id}.
write - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_update_items '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_update_items '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_delete_items
Delete an item from a list Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/items/{listItem-id}.
write - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_delete_items '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_delete_items '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_items_list_item_create_link
Invoke action createLink Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink.
write - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_items_list_item_create_link '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_items_list_item_create_link '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_list_document_set_versions
List documentSetVersions Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions.
read - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_list_document_set_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_list_document_set_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_create_document_set_versions
Create documentSetVersion Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions.
write - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_create_document_set_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_create_document_set_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_document_set_versions_get_count_3ae5
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count.
read - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_document_set_versions_get_count_3ae5 '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_document_set_versions_get_count_3ae5 '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_get_document_set_versions
Get documentSetVersion Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}.
read - Parameters
- site_id, list_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_get_document_set_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_get_document_set_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_update_document_set_versions
Update the navigation property documentSetVersions in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}.
write - Parameters
- site_id, list_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_update_document_set_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_update_document_set_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_delete_document_set_versions
Delete documentSetVersion Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}.
write - Parameters
- site_id, list_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_delete_document_set_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_delete_document_set_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_document_set_versions_get_fields
Get fields from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields.
read - Parameters
- site_id, list_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_document_set_versions_get_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_document_set_versions_get_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_document_set_versions_update_fields
Update the navigation property fields in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields.
write - Parameters
- site_id, list_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_document_set_versions_update_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_document_set_versions_update_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_document_set_versions_delete_fields
Delete navigation property fields for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields.
write - Parameters
- site_id, list_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_document_set_versions_delete_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_document_set_versions_delete_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_items_list_item_document_set_versions_document_set_version_restore
Invoke action restore Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore.
read - Parameters
- site_id, list_id, list_item_id, document_set_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_items_list_item_document_set_versions_document_set_version_restore '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_items_list_item_document_set_versions_document_set_version_restore '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","document_set_version_id":"example_document_set_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_get_drive_item
Get driveItem from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem.
read - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_get_drive_item '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_get_drive_item '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_get_drive_item_content
Get content for the navigation property driveItem from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content.
read - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_get_drive_item_content '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_get_drive_item_content '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_update_drive_item_content
Update content for the navigation property driveItem in sites Official Microsoft Graph v1.0 endpoint: PUT /sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content.
write - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_update_drive_item_content '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_update_drive_item_content '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_get_fields
Get fields from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields.
read - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_get_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_get_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_update_fields
Update listItem Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields.
write - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_update_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_update_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_delete_fields
Delete navigation property fields for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields.
write - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_delete_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_delete_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_items_list_item_get_activities_by_interval_4c35
Invoke function getActivitiesByInterval Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval().
read - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_items_list_item_get_activities_by_interval_4c35 '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_items_list_item_get_activities_by_interval_4c35 '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_list_versions
Listing versions of a ListItem Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions.
read - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_list_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_list_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_create_versions
Create new navigation property to versions for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions.
write - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_create_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_create_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_versions_get_count_d8e9
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count.
read - Parameters
- site_id, list_id, list_item_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_versions_get_count_d8e9 '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_versions_get_count_d8e9 '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_get_versions
Get a ListItemVersion resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}.
read - Parameters
- site_id, list_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_get_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_get_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_update_versions
Update the navigation property versions in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}.
write - Parameters
- site_id, list_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_update_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_update_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_delete_versions
Delete navigation property versions for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}.
write - Parameters
- site_id, list_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_delete_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_delete_versions '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_versions_get_fields
Get fields from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields.
read - Parameters
- site_id, list_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_versions_get_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_versions_get_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_versions_update_fields
Update the navigation property fields in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields.
write - Parameters
- site_id, list_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_versions_update_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_versions_update_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_versions_delete_fields
Delete navigation property fields for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields.
write - Parameters
- site_id, list_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_items_versions_delete_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_items_versions_delete_fields '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_items_list_item_versions_list_item_version_restore_version
Invoke action restoreVersion Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion.
read - Parameters
- site_id, list_id, list_item_id, list_item_version_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_items_list_item_versions_list_item_version_restore_version '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_items_list_item_versions_list_item_version_restore_version '{"site_id":"example_site_id","list_id":"example_list_id","list_item_id":"example_list_item_id","list_item_version_id":"example_list_item_version_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_list_operations
Get operations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/operations.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_list_operations '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_list_operations '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_create_operations
Create new navigation property to operations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/operations.
write - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_create_operations '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_create_operations '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_operations_get_count_f5fa
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/operations/$count.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_operations_get_count_f5fa '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_operations_get_count_f5fa '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_operations
Get operations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}.
read - Parameters
- site_id, list_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_operations '{"site_id":"example_site_id","list_id":"example_list_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_get_operations '{"site_id":"example_site_id","list_id":"example_list_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_update_operations
Update the navigation property operations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}.
write - Parameters
- site_id, list_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_update_operations '{"site_id":"example_site_id","list_id":"example_list_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_update_operations '{"site_id":"example_site_id","list_id":"example_list_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_delete_operations
Delete navigation property operations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}.
write - Parameters
- site_id, list_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_delete_operations '{"site_id":"example_site_id","list_id":"example_list_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_delete_operations '{"site_id":"example_site_id","list_id":"example_list_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_list_subscriptions
Get subscriptions from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/subscriptions.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_list_subscriptions '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_list_subscriptions '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_create_subscriptions
Create new navigation property to subscriptions for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/subscriptions.
write - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_create_subscriptions '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_create_subscriptions '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_subscriptions_get_count_77bf
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/subscriptions/$count.
read - Parameters
- site_id, list_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_subscriptions_get_count_77bf '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_subscriptions_get_count_77bf '{"site_id":"example_site_id","list_id":"example_list_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_subscriptions
Get subscriptions from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}.
read - Parameters
- site_id, list_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_get_subscriptions '{"site_id":"example_site_id","list_id":"example_list_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_get_subscriptions '{"site_id":"example_site_id","list_id":"example_list_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_update_subscriptions
Update the navigation property subscriptions in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}.
write - Parameters
- site_id, list_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_update_subscriptions '{"site_id":"example_site_id","list_id":"example_list_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_update_subscriptions '{"site_id":"example_site_id","list_id":"example_list_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_lists_delete_subscriptions
Delete navigation property subscriptions for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}.
write - Parameters
- site_id, list_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_lists_delete_subscriptions '{"site_id":"example_site_id","list_id":"example_list_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_lists_delete_subscriptions '{"site_id":"example_site_id","list_id":"example_list_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_subscriptions_subscription_reauthorize
Invoke action reauthorize Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}/reauthorize.
read - Parameters
- site_id, list_id, subscription_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_lists_list_subscriptions_subscription_reauthorize '{"site_id":"example_site_id","list_id":"example_list_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_lists_list_subscriptions_subscription_reauthorize '{"site_id":"example_site_id","list_id":"example_list_id","subscription_id":"example_subscription_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_onenote
Get onenote from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_onenote '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_onenote '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_update_onenote
Update the navigation property onenote in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_update_onenote '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_update_onenote '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_delete_onenote
Delete navigation property onenote for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_delete_onenote '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_delete_onenote '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_notebooks
Get notebooks from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_notebooks '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_list_notebooks '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_notebooks
Create new navigation property to notebooks for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_notebooks '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_create_notebooks '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_get_count_fb6b
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_get_count_fb6b '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_get_count_fb6b '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_get_notebook_from_web_url
Invoke action getNotebookFromWebUrl Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/getNotebookFromWebUrl.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_get_notebook_from_web_url '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_get_notebook_from_web_url '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_get_recent_notebooks
Invoke function getRecentNotebooks Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks}).
read - Parameters
- site_id, include_personal_notebooks, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_get_recent_notebooks '{"site_id":"example_site_id","include_personal_notebooks":"example_include_personal_notebooks","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_get_recent_notebooks '{"site_id":"example_site_id","include_personal_notebooks":"example_include_personal_notebooks","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_notebooks
Get notebooks from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}.
read - Parameters
- site_id, notebook_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_notebooks '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_get_notebooks '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_notebooks
Update the navigation property notebooks in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/notebooks/{notebook-id}.
write - Parameters
- site_id, notebook_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_notebooks '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_update_notebooks '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_notebooks
Delete navigation property notebooks for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/notebooks/{notebook-id}.
write - Parameters
- site_id, notebook_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_notebooks '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_delete_notebooks '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_copy_notebook
Invoke action copyNotebook Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook.
read - Parameters
- site_id, notebook_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_copy_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_copy_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_list_section_groups
Get sectionGroups from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups.
read - Parameters
- site_id, notebook_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_list_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_list_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_create_section_groups
Create new navigation property to sectionGroups for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups.
write - Parameters
- site_id, notebook_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_create_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_create_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_count_52f9
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/$count.
read - Parameters
- site_id, notebook_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_count_52f9 '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_count_52f9 '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_get_section_groups
Get sectionGroups from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}.
read - Parameters
- site_id, notebook_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_get_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_get_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_update_section_groups
Update the navigation property sectionGroups in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}.
write - Parameters
- site_id, notebook_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_update_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_update_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_delete_section_groups
Delete navigation property sectionGroups for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}.
write - Parameters
- site_id, notebook_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_delete_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_delete_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook.
read - Parameters
- site_id, notebook_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_parent_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_parent_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_parent_section_group
Get parentSectionGroup from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup.
read - Parameters
- site_id, notebook_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_parent_section_group '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_parent_section_group '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_list_section_groups
Get sectionGroups from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups.
read - Parameters
- site_id, notebook_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_list_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_list_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_section_groups_get_count_52f9
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/$count.
read - Parameters
- site_id, notebook_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_section_groups_get_count_52f9 '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_section_groups_get_count_52f9 '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_section_groups
Get sectionGroups from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}.
read - Parameters
- site_id, notebook_id, section_group_id, section_group_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","section_group_id1":"example_section_group_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_section_groups '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","section_group_id1":"example_section_group_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_list_sections
Get sections from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections.
read - Parameters
- site_id, notebook_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_list_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_list_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_create_sections
Create new navigation property to sections for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections.
write - Parameters
- site_id, notebook_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_create_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_create_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_count_26e6
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/$count.
read - Parameters
- site_id, notebook_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_count_26e6 '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_count_26e6 '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_sections
Get sections from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_get_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_update_sections
Update the navigation property sections in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}.
write - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_update_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_update_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_delete_sections
Delete navigation property sections for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}.
write - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_delete_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_delete_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_copy_to_notebook
Invoke action copyToNotebook Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_copy_to_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_copy_to_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_copy_to_section_group
Invoke action copyToSectionGroup Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_copy_to_section_group '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_copy_to_section_group '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_list_pages
Get pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_list_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_list_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_create_pages
Create new navigation property to pages for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages.
write - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_create_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_create_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_pages_get_count_56bb
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_pages_get_count_56bb '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_pages_get_count_56bb '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_pages
Get pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_update_pages
Update the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}.
write - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_update_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_update_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_delete_pages
Delete navigation property pages for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}.
write - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_delete_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_delete_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_pages_content
Get content for the navigation property pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_pages_content '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_pages_content '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_update_pages_content
Update content for the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PUT /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content.
write - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_update_pages_content '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_update_pages_content '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_pages_onenote_page_copy_to_section
Invoke action copyToSection Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_pages_onenote_page_copy_to_section '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_pages_onenote_page_copy_to_section '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_pages_onenote_page_one_a84a24ae
Invoke action onenotePatchContent Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_pages_onenote_page_one_a84a24ae '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_pages_onenote_page_one_a84a24ae '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_pages_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_pages_get_parent_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_pages_get_parent_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_pages_get_parent_section
Get parentSection from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_pages_get_parent_section '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_pages_get_parent_section '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_pages_onenote_page_preview
Invoke function preview Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview().
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_pages_onenote_page_preview '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_section_groups_section_group_sections_onenote_section_pages_onenote_page_preview '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_parent_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_parent_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_parent_section_group
Get parentSectionGroup from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup.
read - Parameters
- site_id, notebook_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_parent_section_group '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_section_groups_sections_get_parent_section_group '{"site_id":"example_site_id","notebook_id":"example_notebook_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_list_sections
Get sections from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections.
read - Parameters
- site_id, notebook_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_list_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_list_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_create_sections
Create new navigation property to sections for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sections.
write - Parameters
- site_id, notebook_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_create_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_create_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_get_count_6101
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/$count.
read - Parameters
- site_id, notebook_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_get_count_6101 '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_get_count_6101 '{"site_id":"example_site_id","notebook_id":"example_notebook_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_get_sections
Get sections from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}.
read - Parameters
- site_id, notebook_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_get_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_get_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_update_sections
Update the navigation property sections in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}.
write - Parameters
- site_id, notebook_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_update_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_update_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_delete_sections
Delete navigation property sections for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}.
write - Parameters
- site_id, notebook_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_delete_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_delete_sections '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_copy_to_notebook
Invoke action copyToNotebook Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook.
read - Parameters
- site_id, notebook_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_copy_to_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_copy_to_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_copy_to_section_group
Invoke action copyToSectionGroup Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup.
read - Parameters
- site_id, notebook_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_copy_to_section_group '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_copy_to_section_group '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_list_pages
Get pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages.
read - Parameters
- site_id, notebook_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_list_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_list_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_create_pages
Create new navigation property to pages for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages.
write - Parameters
- site_id, notebook_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_create_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_create_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_pages_get_count_9b53
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/$count.
read - Parameters
- site_id, notebook_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_pages_get_count_9b53 '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_pages_get_count_9b53 '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_get_pages
Get pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}.
read - Parameters
- site_id, notebook_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_get_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_get_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_update_pages
Update the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}.
write - Parameters
- site_id, notebook_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_update_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_update_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_delete_pages
Delete navigation property pages for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}.
write - Parameters
- site_id, notebook_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_delete_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_delete_pages '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_get_pages_content
Get content for the navigation property pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content.
read - Parameters
- site_id, notebook_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_get_pages_content '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_get_pages_content '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_update_pages_content
Update content for the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PUT /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content.
write - Parameters
- site_id, notebook_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_update_pages_content '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_update_pages_content '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_pages_onenote_page_copy_to_section
Invoke action copyToSection Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection.
read - Parameters
- site_id, notebook_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_pages_onenote_page_copy_to_section '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_pages_onenote_page_copy_to_section '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_pages_onenote_page_onenote_patch_content
Invoke action onenotePatchContent Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent.
read - Parameters
- site_id, notebook_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_pages_onenote_page_onenote_patch_content '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_pages_onenote_page_onenote_patch_content '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_pages_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook.
read - Parameters
- site_id, notebook_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_pages_get_parent_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_pages_get_parent_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_pages_get_parent_section
Get parentSection from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection.
read - Parameters
- site_id, notebook_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_pages_get_parent_section '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_pages_get_parent_section '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_pages_onenote_page_preview
Invoke function preview Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview().
read - Parameters
- site_id, notebook_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_pages_onenote_page_preview '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_notebooks_notebook_sections_onenote_section_pages_onenote_page_preview '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook.
read - Parameters
- site_id, notebook_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_get_parent_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_get_parent_notebook '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_get_parent_section_group
Get parentSectionGroup from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup.
read - Parameters
- site_id, notebook_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_notebooks_sections_get_parent_section_group '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_notebooks_sections_get_parent_section_group '{"site_id":"example_site_id","notebook_id":"example_notebook_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_operations
Get operations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/operations.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_operations '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_list_operations '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_operations
Create new navigation property to operations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/operations.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_operations '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_create_operations '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_operations_get_count_eadd
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/operations/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_operations_get_count_eadd '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_operations_get_count_eadd '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_operations
Get operations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/operations/{onenoteOperation-id}.
read - Parameters
- site_id, onenote_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_operations '{"site_id":"example_site_id","onenote_operation_id":"example_onenote_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_get_operations '{"site_id":"example_site_id","onenote_operation_id":"example_onenote_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_operations
Update the navigation property operations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/operations/{onenoteOperation-id}.
write - Parameters
- site_id, onenote_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_operations '{"site_id":"example_site_id","onenote_operation_id":"example_onenote_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_update_operations '{"site_id":"example_site_id","onenote_operation_id":"example_onenote_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_operations
Delete navigation property operations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/operations/{onenoteOperation-id}.
write - Parameters
- site_id, onenote_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_operations '{"site_id":"example_site_id","onenote_operation_id":"example_onenote_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_delete_operations '{"site_id":"example_site_id","onenote_operation_id":"example_onenote_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_pages
Get pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/pages.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_pages '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_list_pages '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_pages
Create new navigation property to pages for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/pages.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_pages '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_create_pages '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_pages_get_count_bfb1
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/pages/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_pages_get_count_bfb1 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_pages_get_count_bfb1 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_pages
Get pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/pages/{onenotePage-id}.
read - Parameters
- site_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_pages '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_get_pages '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_pages
Update the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/pages/{onenotePage-id}.
write - Parameters
- site_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_pages '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_update_pages '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_pages
Delete navigation property pages for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/pages/{onenotePage-id}.
write - Parameters
- site_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_pages '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_delete_pages '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_pages_content
Get content for the navigation property pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/pages/{onenotePage-id}/content.
read - Parameters
- site_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_pages_content '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_get_pages_content '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_pages_content
Update content for the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PUT /sites/{site-id}/onenote/pages/{onenotePage-id}/content.
write - Parameters
- site_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_pages_content '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_update_pages_content '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_pages_onenote_page_copy_to_section
Invoke action copyToSection Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection.
read - Parameters
- site_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_pages_onenote_page_copy_to_section '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_pages_onenote_page_copy_to_section '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_pages_onenote_page_onenote_patch_content
Invoke action onenotePatchContent Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent.
read - Parameters
- site_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_pages_onenote_page_onenote_patch_content '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_pages_onenote_page_onenote_patch_content '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_pages_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook.
read - Parameters
- site_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_pages_get_parent_notebook '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_pages_get_parent_notebook '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_pages_get_parent_section
Get parentSection from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection.
read - Parameters
- site_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_pages_get_parent_section '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_pages_get_parent_section '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_pages_onenote_page_preview
Invoke function preview Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/pages/{onenotePage-id}/preview().
read - Parameters
- site_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_pages_onenote_page_preview '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_pages_onenote_page_preview '{"site_id":"example_site_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_resources
Get resources from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/resources.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_resources '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_list_resources '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_resources
Create new navigation property to resources for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/resources.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_resources '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_create_resources '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_resources_get_count_476e
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/resources/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_resources_get_count_476e '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_resources_get_count_476e '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_resources
Get resources from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/resources/{onenoteResource-id}.
read - Parameters
- site_id, onenote_resource_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_resources '{"site_id":"example_site_id","onenote_resource_id":"example_onenote_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_get_resources '{"site_id":"example_site_id","onenote_resource_id":"example_onenote_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_resources
Update the navigation property resources in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/resources/{onenoteResource-id}.
write - Parameters
- site_id, onenote_resource_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_resources '{"site_id":"example_site_id","onenote_resource_id":"example_onenote_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_update_resources '{"site_id":"example_site_id","onenote_resource_id":"example_onenote_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_resources
Delete navigation property resources for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/resources/{onenoteResource-id}.
write - Parameters
- site_id, onenote_resource_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_resources '{"site_id":"example_site_id","onenote_resource_id":"example_onenote_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_delete_resources '{"site_id":"example_site_id","onenote_resource_id":"example_onenote_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_resources_content
Get content for the navigation property resources from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/resources/{onenoteResource-id}/content.
read - Parameters
- site_id, onenote_resource_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_resources_content '{"site_id":"example_site_id","onenote_resource_id":"example_onenote_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_get_resources_content '{"site_id":"example_site_id","onenote_resource_id":"example_onenote_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_resources_content
Update content for the navigation property resources in sites Official Microsoft Graph v1.0 endpoint: PUT /sites/{site-id}/onenote/resources/{onenoteResource-id}/content.
write - Parameters
- site_id, onenote_resource_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_resources_content '{"site_id":"example_site_id","onenote_resource_id":"example_onenote_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_update_resources_content '{"site_id":"example_site_id","onenote_resource_id":"example_onenote_resource_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_section_groups
Get sectionGroups from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_section_groups '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_list_section_groups '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_section_groups
Create new navigation property to sectionGroups for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sectionGroups.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_section_groups '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_create_section_groups '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_get_count_2fdb
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_get_count_2fdb '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_get_count_2fdb '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_section_groups
Get sectionGroups from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}.
read - Parameters
- site_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_section_groups '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_get_section_groups '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_section_groups
Update the navigation property sectionGroups in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}.
write - Parameters
- site_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_section_groups '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_update_section_groups '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_section_groups
Delete navigation property sectionGroups for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}.
write - Parameters
- site_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_section_groups '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_delete_section_groups '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook.
read - Parameters
- site_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_get_parent_notebook '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_get_parent_notebook '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_get_parent_section_group
Get parentSectionGroup from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup.
read - Parameters
- site_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_get_parent_section_group '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_get_parent_section_group '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_list_section_groups
Get sectionGroups from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups.
read - Parameters
- site_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_list_section_groups '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_list_section_groups '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_section_groups_get_count_2fdb
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count.
read - Parameters
- site_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_section_groups_get_count_2fdb '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_section_groups_get_count_2fdb '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_get_section_groups
Get sectionGroups from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}.
read - Parameters
- site_id, section_group_id, section_group_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_get_section_groups '{"site_id":"example_site_id","section_group_id":"example_section_group_id","section_group_id1":"example_section_group_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_get_section_groups '{"site_id":"example_site_id","section_group_id":"example_section_group_id","section_group_id1":"example_section_group_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_list_sections
Get sections from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections.
read - Parameters
- site_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_list_sections '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_list_sections '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_create_sections
Create new navigation property to sections for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections.
write - Parameters
- site_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_create_sections '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_create_sections '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_get_count_2fbc
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/$count.
read - Parameters
- site_id, section_group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_get_count_2fbc '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_get_count_2fbc '{"site_id":"example_site_id","section_group_id":"example_section_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_get_sections
Get sections from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}.
read - Parameters
- site_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_get_sections '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_get_sections '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_update_sections
Update the navigation property sections in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}.
write - Parameters
- site_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_update_sections '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_update_sections '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_delete_sections
Delete navigation property sections for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}.
write - Parameters
- site_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_delete_sections '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_delete_sections '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_copy_to_notebook
Invoke action copyToNotebook Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook.
read - Parameters
- site_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_copy_to_notebook '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_copy_to_notebook '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_copy_to_section_group
Invoke action copyToSectionGroup Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup.
read - Parameters
- site_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_copy_to_section_group '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_copy_to_section_group '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_list_pages
Get pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages.
read - Parameters
- site_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_list_pages '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_list_pages '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_create_pages
Create new navigation property to pages for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages.
write - Parameters
- site_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_create_pages '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_create_pages '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_pages_get_count_9ecc
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count.
read - Parameters
- site_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_pages_get_count_9ecc '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_pages_get_count_9ecc '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_get_pages
Get pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}.
read - Parameters
- site_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_get_pages '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_get_pages '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_update_pages
Update the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}.
write - Parameters
- site_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_update_pages '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_update_pages '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_delete_pages
Delete navigation property pages for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}.
write - Parameters
- site_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_delete_pages '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_delete_pages '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_get_pages_content
Get content for the navigation property pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content.
read - Parameters
- site_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_get_pages_content '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_get_pages_content '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_update_pages_content
Update content for the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PUT /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content.
write - Parameters
- site_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_update_pages_content '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_update_pages_content '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_pages_onenote_page_copy_to_section
Invoke action copyToSection Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection.
read - Parameters
- site_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_pages_onenote_page_copy_to_section '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_pages_onenote_page_copy_to_section '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_pages_onenote_page_onenote_patch_content
Invoke action onenotePatchContent Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent.
read - Parameters
- site_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_pages_onenote_page_onenote_patch_content '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_pages_onenote_page_onenote_patch_content '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_pages_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook.
read - Parameters
- site_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_pages_get_parent_notebook '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_pages_get_parent_notebook '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_pages_get_parent_section
Get parentSection from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection.
read - Parameters
- site_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_pages_get_parent_section '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_pages_get_parent_section '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_pages_onenote_page_preview
Invoke function preview Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview().
read - Parameters
- site_id, section_group_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_pages_onenote_page_preview '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_section_groups_section_group_sections_onenote_section_pages_onenote_page_preview '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook.
read - Parameters
- site_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_get_parent_notebook '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_get_parent_notebook '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_get_parent_section_group
Get parentSectionGroup from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup.
read - Parameters
- site_id, section_group_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_section_groups_sections_get_parent_section_group '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_section_groups_sections_get_parent_section_group '{"site_id":"example_site_id","section_group_id":"example_section_group_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_sections
Get sections from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_list_sections '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_list_sections '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_sections
Create new navigation property to sections for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sections.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_create_sections '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_create_sections '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_get_count_5061
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_get_count_5061 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_get_count_5061 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_sections
Get sections from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/{onenoteSection-id}.
read - Parameters
- site_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_get_sections '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_get_sections '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_sections
Update the navigation property sections in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/sections/{onenoteSection-id}.
write - Parameters
- site_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_update_sections '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_update_sections '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_sections
Delete navigation property sections for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/sections/{onenoteSection-id}.
write - Parameters
- site_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_delete_sections '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_delete_sections '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_sections_onenote_section_copy_to_notebook
Invoke action copyToNotebook Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook.
read - Parameters
- site_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_sections_onenote_section_copy_to_notebook '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_sections_onenote_section_copy_to_notebook '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_sections_onenote_section_copy_to_section_group
Invoke action copyToSectionGroup Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup.
read - Parameters
- site_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_sections_onenote_section_copy_to_section_group '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_sections_onenote_section_copy_to_section_group '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_list_pages
Get pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages.
read - Parameters
- site_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_list_pages '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_list_pages '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_create_pages
Create new navigation property to pages for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages.
write - Parameters
- site_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_create_pages '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_create_pages '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_pages_get_count_a33a
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/$count.
read - Parameters
- site_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_pages_get_count_a33a '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_pages_get_count_a33a '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_get_pages
Get pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}.
read - Parameters
- site_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_get_pages '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_get_pages '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_update_pages
Update the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}.
write - Parameters
- site_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_update_pages '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_update_pages '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_delete_pages
Delete navigation property pages for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}.
write - Parameters
- site_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_delete_pages '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_delete_pages '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_get_pages_content
Get content for the navigation property pages from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content.
read - Parameters
- site_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_get_pages_content '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_get_pages_content '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_update_pages_content
Update content for the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PUT /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content.
write - Parameters
- site_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_update_pages_content '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_update_pages_content '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_sections_onenote_section_pages_onenote_page_copy_to_section
Invoke action copyToSection Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection.
read - Parameters
- site_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_sections_onenote_section_pages_onenote_page_copy_to_section '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_sections_onenote_section_pages_onenote_page_copy_to_section '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_sections_onenote_section_pages_onenote_page_onenote_patch_content
Invoke action onenotePatchContent Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent.
read - Parameters
- site_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_sections_onenote_section_pages_onenote_page_onenote_patch_content '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_sections_onenote_section_pages_onenote_page_onenote_patch_content '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_pages_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook.
read - Parameters
- site_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_pages_get_parent_notebook '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_pages_get_parent_notebook '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_pages_get_parent_section
Get parentSection from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection.
read - Parameters
- site_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_pages_get_parent_section '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_pages_get_parent_section '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_sections_onenote_section_pages_onenote_page_preview
Invoke function preview Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview().
read - Parameters
- site_id, onenote_section_id, onenote_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_onenote_sections_onenote_section_pages_onenote_page_preview '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_onenote_sections_onenote_section_pages_onenote_page_preview '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","onenote_page_id":"example_onenote_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_get_parent_notebook
Get parentNotebook from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook.
read - Parameters
- site_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_get_parent_notebook '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_get_parent_notebook '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_get_parent_section_group
Get parentSectionGroup from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup.
read - Parameters
- site_id, onenote_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_onenote_sections_get_parent_section_group '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_onenote_sections_get_parent_section_group '{"site_id":"example_site_id","onenote_section_id":"example_onenote_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_operations
List operations on a site Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/operations.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_operations '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_operations '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_create_operations
Create new navigation property to operations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/operations.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_create_operations '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_create_operations '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_operations_get_count_71b0
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/operations/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_operations_get_count_71b0 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_operations_get_count_71b0 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_operations
Get richLongRunningOperation Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/operations/{richLongRunningOperation-id}.
read - Parameters
- site_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_operations '{"site_id":"example_site_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_operations '{"site_id":"example_site_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_update_operations
Update the navigation property operations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/operations/{richLongRunningOperation-id}.
write - Parameters
- site_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_update_operations '{"site_id":"example_site_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_update_operations '{"site_id":"example_site_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_delete_operations
Delete navigation property operations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/operations/{richLongRunningOperation-id}.
write - Parameters
- site_id, rich_long_running_operation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_delete_operations '{"site_id":"example_site_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_delete_operations '{"site_id":"example_site_id","rich_long_running_operation_id":"example_rich_long_running_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_pages
List baseSitePages Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_pages '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_pages '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_create_pages
Create a page in the site pages list of a site Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/pages.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_create_pages '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_create_pages '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_get_count_3155
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_get_count_3155 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_get_count_3155 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_pages_as_site_page
Get SitePage Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/graph.sitePage.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_pages_as_site_page '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_pages_as_site_page '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_get_count_as_site_page_c4ed
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/graph.sitePage/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_get_count_as_site_page_c4ed '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_get_count_as_site_page_c4ed '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_pages
Get baseSitePage Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}.
read - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_pages '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_pages '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_update_pages
Update the navigation property pages in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/pages/{baseSitePage-id}.
write - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_update_pages '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_update_pages '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_delete_pages
Delete baseSitePage Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/pages/{baseSitePage-id}.
write - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_delete_pages '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_delete_pages '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_pages_as_site_page
Get SitePage Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage.
read - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_pages_as_site_page '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_pages_as_site_page '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_get_canvas_layout
Get canvasLayout from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout.
read - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_get_canvas_layout '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_get_canvas_layout '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_update_canvas_layout
Update the navigation property canvasLayout in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout.
write - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_update_canvas_layout '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_update_canvas_layout '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_delete_canvas_layout
Delete navigation property canvasLayout for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout.
write - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_delete_canvas_layout '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_delete_canvas_layout '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_list_horizontal_sections
Get horizontalSections from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections.
read - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_list_horizontal_sections '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_list_horizontal_sections '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_create_horizontal_sections
Create new navigation property to horizontalSections for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections.
write - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_create_horizontal_sections '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_create_horizontal_sections '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_get_count_38fc
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/$count.
read - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_get_count_38fc '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_get_count_38fc '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_get_horizontal_sections
Get horizontalSections from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}.
read - Parameters
- site_id, base_site_page_id, horizontal_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_get_horizontal_sections '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_get_horizontal_sections '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_update_horizontal_sections
Update the navigation property horizontalSections in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}.
write - Parameters
- site_id, base_site_page_id, horizontal_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_update_horizontal_sections '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_update_horizontal_sections '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_delete_horizontal_sections
Delete navigation property horizontalSections for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}.
write - Parameters
- site_id, base_site_page_id, horizontal_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_delete_horizontal_sections '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_delete_horizontal_sections '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_list_columns
Get columns from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns.
read - Parameters
- site_id, base_site_page_id, horizontal_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_list_columns '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_list_columns '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_create_columns
Create new navigation property to columns for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns.
write - Parameters
- site_id, base_site_page_id, horizontal_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_create_columns '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_create_columns '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_get_count_9382
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count.
read - Parameters
- site_id, base_site_page_id, horizontal_section_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_get_count_9382 '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_get_count_9382 '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_get_columns
Get columns from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}.
read - Parameters
- site_id, base_site_page_id, horizontal_section_id, horizontal_section_column_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_get_columns '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_get_columns '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_update_columns
Update the navigation property columns in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}.
write - Parameters
- site_id, base_site_page_id, horizontal_section_id, horizontal_section_column_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_update_columns '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_update_columns '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_delete_columns
Delete navigation property columns for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}.
write - Parameters
- site_id, base_site_page_id, horizontal_section_id, horizontal_section_column_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_delete_columns '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_delete_columns '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_list_webparts
Get webparts from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts.
read - Parameters
- site_id, base_site_page_id, horizontal_section_id, horizontal_section_column_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_list_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_list_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_create_webparts
Create new navigation property to webparts for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts.
write - Parameters
- site_id, base_site_page_id, horizontal_section_id, horizontal_section_column_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_create_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_create_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_webparts_get_count_bbb9
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count.
read - Parameters
- site_id, base_site_page_id, horizontal_section_id, horizontal_section_column_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_webparts_get_count_bbb9 '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_webparts_get_count_bbb9 '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_get_webparts
Get webparts from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}.
read - Parameters
- site_id, base_site_page_id, horizontal_section_id, horizontal_section_column_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_get_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_get_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_update_webparts
Update the navigation property webparts in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}.
write - Parameters
- site_id, base_site_page_id, horizontal_section_id, horizontal_section_column_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_update_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_update_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_delete_webparts
Delete navigation property webparts for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}.
write - Parameters
- site_id, base_site_page_id, horizontal_section_id, horizontal_section_column_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_delete_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_horizontal_sections_columns_delete_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_pages_base_site_page_site_page_canvas_layout_horizontal_sections_horizontal_section_columns_horizontal_5a072af7
Invoke action getPositionOfWebPart Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart.
read - Parameters
- site_id, base_site_page_id, horizontal_section_id, horizontal_section_column_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_pages_base_site_page_site_page_canvas_layout_horizontal_sections_horizontal_section_columns_horizontal_5a072af7 '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_pages_base_site_page_site_page_canvas_layout_horizontal_sections_horizontal_section_columns_horizontal_5a072af7 '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","horizontal_section_id":"example_horizontal_section_id","horizontal_section_column_id":"example_horizontal_section_column_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_get_vertical_section
Get verticalSection from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection.
read - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_get_vertical_section '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_get_vertical_section '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_update_vertical_section
Update the navigation property verticalSection in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection.
write - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_update_vertical_section '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_update_vertical_section '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_delete_vertical_section
Delete navigation property verticalSection for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection.
write - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_delete_vertical_section '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_delete_vertical_section '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_list_webparts
Get webparts from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts.
read - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_list_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_list_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_create_webparts
Create new navigation property to webparts for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts.
write - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_create_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_create_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_webparts_get_count_185f
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts/$count.
read - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_webparts_get_count_185f '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_webparts_get_count_185f '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_get_webparts
Get webparts from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts/{webPart-id}.
read - Parameters
- site_id, base_site_page_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_get_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_get_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_update_webparts
Update the navigation property webparts in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts/{webPart-id}.
write - Parameters
- site_id, base_site_page_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_update_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_update_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_delete_webparts
Delete navigation property webparts for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts/{webPart-id}.
write - Parameters
- site_id, base_site_page_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_delete_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_canvas_layout_vertical_section_delete_webparts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_pages_base_site_page_site_page_canvas_layout_vertical_section_webparts_web_part_get_position_of_web_part
Invoke action getPositionOfWebPart Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart.
read - Parameters
- site_id, base_site_page_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_pages_base_site_page_site_page_canvas_layout_vertical_section_webparts_web_part_get_position_of_web_part '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_pages_base_site_page_site_page_canvas_layout_vertical_section_webparts_web_part_get_position_of_web_part '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_list_web_parts
Get webParts from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts.
read - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_list_web_parts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_list_web_parts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_create_web_parts
Create new navigation property to webParts for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts.
write - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_create_web_parts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_create_web_parts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_web_parts_get_count_eb99
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts/$count.
read - Parameters
- site_id, base_site_page_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_web_parts_get_count_eb99 '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_web_parts_get_count_eb99 '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_get_web_parts
Get webParts from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts/{webPart-id}.
read - Parameters
- site_id, base_site_page_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_get_web_parts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_get_web_parts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_update_web_parts
Update the navigation property webParts in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts/{webPart-id}.
write - Parameters
- site_id, base_site_page_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_update_web_parts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_update_web_parts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_delete_web_parts
Delete webPart Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts/{webPart-id}.
write - Parameters
- site_id, base_site_page_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_pages_as_site_page_delete_web_parts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_pages_as_site_page_delete_web_parts '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_pages_base_site_page_site_page_web_parts_web_part_get_position_of_web_part
Invoke action getPositionOfWebPart Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts/{webPart-id}/getPositionOfWebPart.
read - Parameters
- site_id, base_site_page_id, web_part_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_pages_base_site_page_site_page_web_parts_web_part_get_position_of_web_part '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_pages_base_site_page_site_page_web_parts_web_part_get_position_of_web_part '{"site_id":"example_site_id","base_site_page_id":"example_base_site_page_id","web_part_id":"example_web_part_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_permissions
List permissions Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/permissions.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_permissions '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_permissions '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_create_permissions
Create permission Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/permissions.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_create_permissions '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_create_permissions '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_permissions_get_count_511e
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/permissions/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_permissions_get_count_511e '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_permissions_get_count_511e '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_permissions
Get permission Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/permissions/{permission-id}.
read - Parameters
- site_id, permission_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_permissions '{"site_id":"example_site_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_permissions '{"site_id":"example_site_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_update_permissions
Update permission Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/permissions/{permission-id}.
write - Parameters
- site_id, permission_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_update_permissions '{"site_id":"example_site_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_update_permissions '{"site_id":"example_site_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_delete_permissions
Delete permission Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/permissions/{permission-id}.
write - Parameters
- site_id, permission_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_delete_permissions '{"site_id":"example_site_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_delete_permissions '{"site_id":"example_site_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_site_permissions_permission_grant
Invoke action grant Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/permissions/{permission-id}/grant.
read - Parameters
- site_id, permission_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_site_permissions_permission_grant '{"site_id":"example_site_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_site_permissions_permission_grant '{"site_id":"example_site_id","permission_id":"example_permission_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_sites
List subsites for a site Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/sites.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_sites '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_sites '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_sites_get_count_f499
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/sites/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_sites_get_count_f499 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_sites_get_count_f499 '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_sites
Get sites from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/sites/{site-id1}.
read - Parameters
- site_id, site_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_sites '{"site_id":"example_site_id","site_id1":"example_site_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_sites '{"site_id":"example_site_id","site_id1":"example_site_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_term_store
Get store Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_term_store '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_term_store '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_update_term_store
Update store Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_update_term_store '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_update_term_store '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_delete_term_store
Delete navigation property termStore for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_delete_term_store '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_delete_term_store '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_list_groups
List termStore groups Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_list_groups '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_list_groups '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_create_groups
Create termStore group Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_create_groups '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_create_groups '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_get_count_f00a
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_get_count_f00a '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_get_count_f00a '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_get_groups
Get group Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}.
read - Parameters
- site_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_get_groups '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_get_groups '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_update_groups
Update the navigation property groups in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}.
write - Parameters
- site_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_update_groups '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_update_groups '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_delete_groups
Delete group Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}.
write - Parameters
- site_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_delete_groups '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_delete_groups '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_list_sets
List sets Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets.
read - Parameters
- site_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_list_sets '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_list_sets '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_create_sets
Create new navigation property to sets for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups/{group-id}/sets.
write - Parameters
- site_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_create_sets '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_create_sets '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_get_count_5bbd
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/$count.
read - Parameters
- site_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_get_count_5bbd '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_get_count_5bbd '{"site_id":"example_site_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_get_sets
Get sets from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}.
read - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_get_sets '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_get_sets '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_update_sets
Update the navigation property sets in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}.
write - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_update_sets '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_update_sets '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_delete_sets
Delete navigation property sets for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}.
write - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_delete_sets '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_delete_sets '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children.
read - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_list_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_list_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children.
write - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_create_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_create_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_get_count_ecf0
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/$count.
read - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_get_count_ecf0 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_get_count_ecf0 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_get_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_get_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}.
write - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_update_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_update_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}.
write - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_delete_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_delete_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_list_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_list_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children.
write - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_create_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_create_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_get_count_ecf0
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/$count.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_get_count_ecf0 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_get_count_ecf0 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_get_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_get_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_update_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_update_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_delete_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_delete_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_list_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_list_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_create_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_create_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_count_0d34
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_count_0d34 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_count_0d34 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_get_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_get_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_update_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_update_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_delete_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_delete_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_children_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_children_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_list_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_list_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations.
write - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_create_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_create_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_count_0d34
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/$count.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_count_0d34 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_count_0d34 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_get_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_get_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_update_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_update_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_delete_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_delete_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_from_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_from_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_to_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_relations_get_to_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_children_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_children_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_get_parent_group
Get parentGroup from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup.
read - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_get_parent_group '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_get_parent_group '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_update_parent_group
Update the navigation property parentGroup in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup.
write - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_update_parent_group '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_update_parent_group '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_delete_parent_group
Delete navigation property parentGroup for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup.
write - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_delete_parent_group '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_delete_parent_group '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations.
read - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_list_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_list_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations.
write - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_create_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_create_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_relations_get_count_efa1
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/$count.
read - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_relations_get_count_efa1 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_relations_get_count_efa1 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}.
read - Parameters
- site_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_get_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_get_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}.
write - Parameters
- site_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_update_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_update_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}.
write - Parameters
- site_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_delete_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_delete_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_relations_get_from_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_relations_get_from_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set.
read - Parameters
- site_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_relations_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_relations_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_relations_get_to_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_relations_get_to_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_list_terms
Get term Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms.
read - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_list_terms '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_list_terms '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_create_terms
Create new navigation property to terms for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms.
write - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_create_terms '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_create_terms '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_get_count_ccfd
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/$count.
read - Parameters
- site_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_get_count_ccfd '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_get_count_ccfd '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_get_terms
Get term Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_get_terms '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_get_terms '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_update_terms
Update the navigation property terms in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}.
write - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_update_terms '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_update_terms '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_delete_terms
Delete navigation property terms for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}.
write - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_delete_terms '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_delete_terms '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_list_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_list_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children.
write - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_create_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_create_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_get_count_1cfd
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/$count.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_get_count_1cfd '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_get_count_1cfd '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_get_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_get_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_update_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_update_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_delete_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_delete_children '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_list_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_list_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_create_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_create_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_count_5476
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_count_5476 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_count_5476 '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_get_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_get_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_update_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_update_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_delete_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_delete_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_children_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_children_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_list_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_list_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations.
write - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_create_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_create_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_count_5d1f
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/$count.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_count_5d1f '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_count_5d1f '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_get_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_get_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_update_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_update_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_delete_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_delete_relations '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_from_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_from_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_to_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_relations_get_to_term '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set.
read - Parameters
- site_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_groups_sets_terms_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_groups_sets_terms_get_set '{"site_id":"example_site_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_list_sets
Get set Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_list_sets '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_list_sets '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_create_sets
Create termStore set Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_create_sets '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_create_sets '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_get_count_dbcc
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_get_count_dbcc '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_get_count_dbcc '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_get_sets
Get set Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}.
read - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_get_sets '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_get_sets '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_update_sets
Update set Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}.
write - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_update_sets '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_update_sets '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_delete_sets
Delete set Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}.
write - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_delete_sets '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_delete_sets '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_list_children
List children Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children.
read - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_list_children '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_list_children '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_create_children
Create term Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/children.
write - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_create_children '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_create_children '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_get_count_ca80
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/$count.
read - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_get_count_ca80 '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_get_count_ca80 '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_get_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_get_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}.
write - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_update_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_update_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}.
write - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_list_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_list_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children.
write - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_create_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_create_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_get_count_ca80
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_get_count_ca80 '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_get_count_ca80 '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}.
read - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_get_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_get_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_update_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_update_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_count_a6ec
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_count_a6ec '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_count_a6ec '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations.
write - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_relations_get_count_a6ec
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/$count.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_relations_get_count_a6ec '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_relations_get_count_a6ec '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_get_parent_group
Get parentGroup from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup.
read - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_get_parent_group '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_get_parent_group '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_update_parent_group
Update the navigation property parentGroup in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup.
write - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_update_parent_group '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_update_parent_group '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_delete_parent_group
Delete navigation property parentGroup for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup.
write - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_delete_parent_group '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_delete_parent_group '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_list_sets
Get sets from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets.
read - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_list_sets '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_list_sets '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_create_sets
Create new navigation property to sets for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets.
write - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_create_sets '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_create_sets '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_count_9c40
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count.
read - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_count_9c40 '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_count_9c40 '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_get_sets
Get sets from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}.
read - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_get_sets '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_get_sets '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_update_sets
Update the navigation property sets in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}.
write - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_update_sets '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_update_sets '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_delete_sets
Delete navigation property sets for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}.
write - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_delete_sets '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_delete_sets '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children.
read - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_list_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_list_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children.
write - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_create_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_create_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_count_dda5
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/$count.
read - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_count_dda5 '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_count_dda5 '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_update_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_update_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_list_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_list_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children.
write - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_create_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_create_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_get_count_dda5
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_get_count_dda5 '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_get_count_dda5 '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_update_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_update_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_count_0c01
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_count_0c01 '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_count_0c01 '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations.
write - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_count_0c01
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/$count.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_count_0c01 '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_count_0c01 '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations.
read - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations.
write - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_count_060a
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count.
read - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_count_060a '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_count_060a '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}.
read - Parameters
- site_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}.
write - Parameters
- site_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}.
write - Parameters
- site_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_list_terms
Get terms from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms.
read - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_list_terms '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_list_terms '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_create_terms
Create new navigation property to terms for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms.
write - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_create_terms '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_create_terms '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_count_bc2b
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count.
read - Parameters
- site_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_count_bc2b '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_count_bc2b '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_terms
Get terms from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_terms '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_get_terms '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_update_terms
Update the navigation property terms in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_update_terms '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_update_terms '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_delete_terms
Delete navigation property terms for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_delete_terms '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_delete_terms '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_list_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_list_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children.
write - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_create_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_create_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_get_count_931c
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_get_count_931c '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_get_count_931c '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_update_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_update_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_count_457b
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_count_457b '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_count_457b '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations.
write - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_count_b43c
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_count_b43c '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_count_b43c '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set.
read - Parameters
- site_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_parent_group_sets_terms_get_set '{"site_id":"example_site_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_list_relations
List relations Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/relations.
read - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/relations.
write - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_relations_get_count_acd9
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/relations/$count.
read - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_relations_get_count_acd9 '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_relations_get_count_acd9 '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}.
read - Parameters
- site_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}.
write - Parameters
- site_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}.
write - Parameters
- site_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set.
read - Parameters
- site_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_list_terms
Get terms from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms.
read - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_list_terms '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_list_terms '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_create_terms
Create new navigation property to terms for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/terms.
write - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_create_terms '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_create_terms '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_get_count_1c96
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/$count.
read - Parameters
- site_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_get_count_1c96 '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_get_count_1c96 '{"site_id":"example_site_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_get_terms
Get terms from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_get_terms '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_get_terms '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_update_terms
Update term Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}.
write - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_update_terms '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_update_terms '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_delete_terms
Delete term Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}.
write - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_delete_terms '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_delete_terms '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_list_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_list_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children.
write - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_create_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_create_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_get_count_4525
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_get_count_4525 '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_get_count_4525 '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}.
read - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_get_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_get_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_update_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_update_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_delete_children '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_count_7f33
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_count_7f33 '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_count_7f33 '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_children_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_list_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations.
write - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_create_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_relations_get_count_017f
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_relations_get_count_017f '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_relations_get_count_017f '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_get_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_update_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_delete_relations '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_relations_get_from_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_relations_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_relations_get_to_term '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set.
read - Parameters
- site_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_store_sets_terms_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_store_sets_terms_get_set '{"site_id":"example_site_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_list_term_stores
Get termStores from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_list_term_stores '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_list_term_stores '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_create_term_stores
Create new navigation property to termStores for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores.
write - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_create_term_stores '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_create_term_stores '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_get_count_00cb
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/$count.
read - Parameters
- site_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_get_count_00cb '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_get_count_00cb '{"site_id":"example_site_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select","expand":"example_expand"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_get_term_stores
Get termStores from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}.
read - Parameters
- site_id, store_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_get_term_stores '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_get_term_stores '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_update_term_stores
Update the navigation property termStores in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}.
write - Parameters
- site_id, store_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_update_term_stores '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_update_term_stores '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_delete_term_stores
Delete navigation property termStores for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}.
write - Parameters
- site_id, store_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_delete_term_stores '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_delete_term_stores '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_list_groups
Get groups from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups.
read - Parameters
- site_id, store_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_list_groups '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_list_groups '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_create_groups
Create new navigation property to groups for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups.
write - Parameters
- site_id, store_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_create_groups '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_create_groups '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_get_count_6c15
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/$count.
read - Parameters
- site_id, store_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_get_count_6c15 '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_get_count_6c15 '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_get_groups
Get groups from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}.
read - Parameters
- site_id, store_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_get_groups '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_get_groups '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_update_groups
Update the navigation property groups in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}.
write - Parameters
- site_id, store_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_update_groups '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_update_groups '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_delete_groups
Delete navigation property groups for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}.
write - Parameters
- site_id, store_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_delete_groups '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_delete_groups '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_list_sets
Get sets from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets.
read - Parameters
- site_id, store_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_list_sets '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_list_sets '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_create_sets
Create new navigation property to sets for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets.
write - Parameters
- site_id, store_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_create_sets '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_create_sets '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_get_count_7f44
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/$count.
read - Parameters
- site_id, store_id, group_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_get_count_7f44 '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_get_count_7f44 '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_get_sets
Get sets from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}.
read - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_get_sets '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_get_sets '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_update_sets
Update the navigation property sets in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}.
write - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_update_sets '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_update_sets '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_delete_sets
Delete navigation property sets for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}.
write - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_delete_sets '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_delete_sets '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children.
read - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_list_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_list_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children.
write - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_create_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_create_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_get_count_f2a5
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/$count.
read - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_get_count_f2a5 '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_get_count_f2a5 '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_get_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_get_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_update_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_update_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_list_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_list_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_create_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_create_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_get_count_f2a5
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/$count.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_get_count_f2a5 '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_get_count_f2a5 '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_get_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_get_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_update_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_update_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_count_d2cc
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_count_d2cc '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_count_d2cc '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_count_d2cc
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/$count.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_count_d2cc '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_count_d2cc '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/set.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_get_parent_group
Get parentGroup from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/parentGroup.
read - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_get_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_get_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_update_parent_group
Update the navigation property parentGroup in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/parentGroup.
write - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_update_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_update_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_delete_parent_group
Delete navigation property parentGroup for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/parentGroup.
write - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_delete_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_delete_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations.
read - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations.
write - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_count_4b3b
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/$count.
read - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_count_4b3b '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_count_4b3b '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}.
read - Parameters
- site_id, store_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, group_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_list_terms
Get terms from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms.
read - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_list_terms '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_list_terms '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_create_terms
Create new navigation property to terms for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms.
write - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_create_terms '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_create_terms '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_count_0e2e
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/$count.
read - Parameters
- site_id, store_id, group_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_count_0e2e '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_count_0e2e '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_get_terms
Get terms from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_get_terms '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_get_terms '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_update_terms
Update the navigation property terms in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_update_terms '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_update_terms '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_delete_terms
Delete navigation property terms for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_delete_terms '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_delete_terms '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_list_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_list_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_create_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_create_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_get_count_18db
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/$count.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_get_count_18db '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_get_count_18db '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_update_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_update_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_count_563b
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_count_563b '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_count_563b '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_count_c55c
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/$count.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_count_c55c '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_count_c55c '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/set.
read - Parameters
- site_id, store_id, group_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_groups_sets_terms_get_set '{"site_id":"example_site_id","store_id":"example_store_id","group_id":"example_group_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_list_sets
Get sets from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets.
read - Parameters
- site_id, store_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_list_sets '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_list_sets '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_create_sets
Create new navigation property to sets for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets.
write - Parameters
- site_id, store_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_create_sets '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_create_sets '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_get_count_07f9
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/$count.
read - Parameters
- site_id, store_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_get_count_07f9 '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_get_count_07f9 '{"site_id":"example_site_id","store_id":"example_store_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby","select":"example_select"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_get_sets
Get sets from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}.
read - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_get_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_get_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_update_sets
Update the navigation property sets in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}.
write - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_update_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_update_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_delete_sets
Delete navigation property sets for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}.
write - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_delete_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_delete_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children.
read - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children.
write - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_get_count_3380
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/$count.
read - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_get_count_3380 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_get_count_3380 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}.
write - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}.
write - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children.
write - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_get_count_3380
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/$count.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_get_count_3380 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_get_count_3380 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_count_6644
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_count_6644 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_count_6644 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations.
write - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_relations_get_count_6644
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/$count.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_relations_get_count_6644 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_relations_get_count_6644 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_get_parent_group
Get parentGroup from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup.
read - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_get_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_get_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_update_parent_group
Update the navigation property parentGroup in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup.
write - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_update_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_update_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_delete_parent_group
Delete navigation property parentGroup for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup.
write - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_delete_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_delete_parent_group '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_list_sets
Get sets from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets.
read - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_list_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_list_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_create_sets
Create new navigation property to sets for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets.
write - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_create_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_create_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_count_bf6d
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/$count.
read - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_count_bf6d '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_count_bf6d '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_get_sets
Get sets from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}.
read - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_get_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_get_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_update_sets
Update the navigation property sets in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}.
write - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_update_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_update_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_delete_sets
Delete navigation property sets for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}.
write - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_delete_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_delete_sets '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children.
read - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children.
write - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_count_a85c
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/$count.
read - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_count_a85c '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_count_a85c '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_get_count_a85c
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_get_count_a85c '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_get_count_a85c '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_count_227b
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_count_227b '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_count_227b '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_count_227b
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/$count.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_count_227b '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_count_227b '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations.
read - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations.
write - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_count_c83c
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count.
read - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_count_c83c '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_count_c83c '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}.
read - Parameters
- site_id, store_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, set_id, set_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_list_terms
Get terms from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms.
read - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_list_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_list_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_create_terms
Create new navigation property to terms for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms.
write - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_create_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_create_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_count_261f
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count.
read - Parameters
- site_id, store_id, set_id, set_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_count_261f '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_count_261f '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_terms
Get terms from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_get_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_update_terms
Update the navigation property terms in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_update_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_update_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_delete_terms
Delete navigation property terms for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_delete_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_delete_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_get_count_775b
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_get_count_775b '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_get_count_775b '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_count_bd86
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_count_bd86 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_count_bd86 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_count_0036
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_count_0036 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_count_0036 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set.
read - Parameters
- site_id, store_id, set_id, set_id1, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_parent_group_sets_terms_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","set_id1":"example_set_id1","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations.
read - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations.
write - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_relations_get_count_5a39
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/$count.
read - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_relations_get_count_5a39 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_relations_get_count_5a39 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}.
read - Parameters
- site_id, store_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, set_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_list_terms
Get terms from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms.
read - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_list_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_list_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_create_terms
Create new navigation property to terms for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms.
write - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_create_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_create_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_get_count_26b6
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/$count.
read - Parameters
- site_id, store_id, set_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_get_count_26b6 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_get_count_26b6 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_get_terms
Get terms from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_get_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_get_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_update_terms
Update the navigation property terms in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}.
write - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_update_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_update_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_delete_terms
Delete navigation property terms for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}.
write - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_delete_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_delete_terms '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_list_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_list_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_create_children
Create new navigation property to children for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children.
write - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_create_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_get_count_6a9c
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/$count.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_get_count_6a9c '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_get_count_6a9c '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_get_children
Get children from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_get_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_update_children
Update the navigation property children in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_update_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_delete_children
Delete navigation property children for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}.
write - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_delete_children '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations.
write - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_count_f9a6
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_count_f9a6 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_count_f9a6 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","relation_id":"example_relation_id","top":"example_top","skip":"example_skip"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set.
read - Parameters
- site_id, store_id, set_id, term_id, term_id1, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_children_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","term_id1":"example_term_id1","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_list_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_list_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_create_relations
Create new navigation property to relations for sites Official Microsoft Graph v1.0 endpoint: POST /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations.
write - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_create_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_count_3f58
Get the number of the resource Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/$count.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_count_3f58 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_count_3f58 '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_get_relations
Get relations from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
read - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_get_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_update_relations
Update the navigation property relations in sites Official Microsoft Graph v1.0 endpoint: PATCH /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level, body
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_update_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_delete_relations
Delete navigation property relations for sites Official Microsoft Graph v1.0 endpoint: DELETE /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}.
write - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_delete_relations '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_from_term
Get fromTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm.
read - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_from_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set.
read - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_to_term
Get toTerm from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm.
read - Parameters
- site_id, store_id, set_id, term_id, relation_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_relations_get_to_term '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","relation_id":"example_relation_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_get_set
Get set from sites Official Microsoft Graph v1.0 endpoint: GET /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set.
read - Parameters
- site_id, store_id, set_id, term_id, top, skip, search, filter, orderby, select, expand, count, consistency_level
kosmo integrations:call microsoft-sharepoint.microsoft_sharepoint_sites_term_stores_sets_terms_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json kosmo integrations:microsoft-sharepoint microsoft_sharepoint_sites_term_stores_sets_terms_get_set '{"site_id":"example_site_id","store_id":"example_store_id","set_id":"example_set_id","term_id":"example_term_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.